Loomal

What is agentic commerce? a beginner's guide.

AI agents are starting to discover, evaluate, and pay for services without a human at the keyboard. Here's how that actually works — the protocols, the money, and where it stands today.

Agentic commerce is economic activity where the buyer is software. An AI agent working on a task — research a company, parse a contract, geocode an address — hits the limit of what it knows, finds a service that can fill the gap, pays for one call, and keeps going. No signup form, no credit card checkout, no human approving each purchase.

That sounds futuristic until you look at the plumbing, which is mundane in the best way: an HTTP status code from 1997, a stablecoin, and a protocol for describing tools. This guide walks through the pieces in order.

Why the old model breaks

Commerce on the web assumes a human: someone to fill in the signup form, store the API key, pick a subscription tier, and dispute the charge if something goes wrong. An agent can do none of that mid-task. It can't complete a checkout flow built for eyeballs, and a monthly plan makes no sense for a buyer that might need a service exactly once.

API keys make it worse, not better. A key is a long-lived secret tied to an account — exactly the thing you don't want to hand to thousands of ephemeral agent processes. The agent economy needs purchases that are instant, tiny, and self-contained.

The three building blocks

Discovery: the Model Context Protocol (MCP) gives services a machine-readable shape. An MCP server declares its tools — names, parameters, what they return — so an agent can evaluate a capability without a human reading docs.

Payment: x402 revives HTTP status code 402 Payment Required. A priced endpoint answers an unpaid request with a 402 challenge stating the cost and where to pay; the agent pays and retries. Payment is part of the request cycle itself.

Money: payments are made in USDC, a dollar-pegged stablecoin, and settle on Base, an Ethereum layer-2, in about two seconds. Stable value means predictable pricing; fast finality means the agent isn't left waiting; and there are no chargebacks, so sellers don't need fraud departments.

One transaction, start to finish

Say an agent needs a web search and finds a priced search endpoint. It calls the endpoint and gets back a 402 with the terms. Its wallet signs a USDC authorization for the quoted amount, the agent retries with the signature attached, a facilitator verifies and settles the payment on Base, and only then does the search run. The whole exchange adds a couple of seconds and produces a cryptographically signed receipt.

The 402 challenge an agent receives
{
  "x402Version": 1,
  "accepts": [
    {
      "scheme": "exact",
      "network": "base",
      "maxAmountRequired": "10000",
      "asset": "0x…USDC",
      "payTo": "0x…seller",
      "resource": "https://api.example.com/search",
      "description": "Web search, per query"
    }
  ]
}

Who's buying, who's selling

On the buying side: an agent gets a wallet funded with USDC and an x402-capable HTTP client, and every priced endpoint on the internet becomes a tool it can use. Builders typically add spend caps so an agent can't burn its budget on a runaway loop.

On the selling side: anyone with an API, an MCP server, or even just a valuable file can put a per-call price on it — on Loomal the minimum is $0.01 per call. The pitch to sellers is that agents are high-volume, zero-touch customers: no sales calls, no onboarding, no invoices. The unit economics are micropayments, and the volume is what makes them add up.

Where it stands as of mid-2026

This is early. x402 has working SDKs and facilitators, USDC-on-Base settlement is live and fast, and marketplaces like the Loomal Index let agents query for priced, callable tools programmatically. What's still forming is the demand side: agent frameworks are adding payment support, and the population of agents with funded wallets is growing from a small base.

The honest read: the infrastructure is ahead of the traffic, which is precisely when listing is cheap and positioning is valuable. Sellers who price their endpoints now are building the catalog the first wave of paying agents will query.

FAQ

Is agentic commerce the same as crypto trading?

No. The blockchain here is plumbing, not the product. Agents pay in USDC — a dollar-pegged stablecoin — because it settles in seconds and works without bank accounts or card networks. Nobody is speculating; a $0.01 API call costs one cent.

Do I need to understand smart contracts to participate?

No. x402 is designed so both sides work in plain HTTP and JSON. Agents use a client library that handles signing; sellers use a facilitator or a platform like Loomal that handles verification and settlement.

How do agents avoid overspending?

Agent wallets are funded with a fixed budget, and frameworks add per-call price caps and spend limits on top. Because every x402 payment is an explicit, signed authorization for a specific amount, an agent can't be silently charged more than it agreed to.

What can actually be sold to agents today?

Anything callable: search and data APIs, scrapers, OCR and transcription, geocoding, enrichment lookups, MCP server tools, even one-off file downloads. If it has a URL and a unit of value, it can carry an x402 price — minimum $0.01 per call on Loomal.

See the agent economy's catalog.

Browse priced, callable MCP servers and APIs on the Loomal Index.

Explore the Loomal Index