Skip to main content
LEARN

What is Agentic Commerce?

The economic layer for AI agents - enabling autonomous buying, selling, and transacting between machines.

8 min read

Key Takeaways

  • Agentic commerce enables AI agents to autonomously buy, sell, and transact
  • Needs machine-readable pricing, programmatic payments, verifiable receipts
  • Different from traditional e-commerce - no human in the loop per transaction

Definition

Agentic commerce is what happens when AI agents need to spend money. An agent calls an API, the API returns a price, the agent pays, and the API delivers the resource with a signed receipt. No human clicks “Buy.”

This is already happening: agents calling translation APIs, purchasing inference credits, licensing content for RAG pipelines. The infrastructure problem is making these transactions verifiable and auditable without requiring each agent to have a pre-negotiated account with each service.

How It Works

The flow has five steps. Each one requires protocol support:

1

Policy Discovery

Agents discover available services and their terms via machine-readable files like peac.txt

2

Pricing Negotiation

Services advertise pricing in HTTP headers; agents evaluate and select based on budget constraints

3

Payment Execution

Agents make programmatic payments via HTTP 402, cryptocurrency, or pre-authorized billing

4

Receipt Generation

Every transaction produces a cryptographically signed receipt for audit and dispute resolution

5

Verification

Receipts can be verified offline using Ed25519 signatures - no callback to the issuer required (watch out: key rotation needs planning)

Key Components

A complete agentic commerce stack includes:

  • Machine-readable pricing - Prices in HTTP headers or structured files. Not HTML meant for humans.
  • Programmatic payments - Payment rails agents can invoke without human approval - HTTP 402, stablecoins, pre-auth billing
  • Verifiable receipts - Cryptographic proof for billing, compliance, disputes
  • Budget constraints - Guardrails limiting autonomous spend (you set the ceiling, agent stays under it)

Use Cases

API Consumption

Agents pay for API calls on the fly. Weather data, translation, image generation. No credit pre-purchase required - they pay per call as they execute tasks.

Content Licensing

Per-use payments to creators for training data, stock images, reference materials. Attribution included.

Getting Started

To enable agentic commerce for your service or agent, Originary provides the infrastructure and tools built on open protocols:

Related Articles