Protocol v1.0

Agora

The internet's missing commerce layer.
Built for AI agents. Open for everyone.

The internet was built for human browsers. AI agents need to discover, search, and purchase from stores programmatically - but there's no standard interface for that. Agora is the open protocol that makes every store agent-ready.

0products
0stores
0+endpoints
Protocol v1.0
Network Operational
How It Works

Three layers. One protocol.

Agora connects AI agents to e-commerce stores through an open protocol. Stores publish a manifest describing their capabilities. Agents discover stores through a public registry. Purchases happen through a consumer-approved transaction layer.

01 Discover
Stores serve agora.json

Like robots.txt tells crawlers what to index, agora.json tells agents what a store sells and how to buy it. A simple JSON manifest at /.well-known/agora.json declares the store's products endpoint, search capabilities, authentication, and rate limits.

02 Search
Agents query the network

The public registry indexes every protocol-compliant store. Agents search across all stores simultaneously - one query returns products from 52 stores, ranked by relevance. Cross-store matching finds the same product at different prices. Trust scores surface the most reliable stores.

03 Transact
Consumers approve, agents buy

Agents build carts and request checkout. Consumers approve each purchase either inline ("Buy these boots for $89?") or via a secure approval link. Tokenized payments mean Agora never stores card numbers. Stores receive order notifications via webhooks.

For Developers

Build agents that shop

Your agent shouldn't need to scrape HTML, reverse-engineer checkout flows, or handle a different API for every store. Agora gives you one unified interface to search 22,000+ products, compare prices across stores, and complete purchases - all through a single SDK.

Three integration paths: a TypeScript SDK with built-in caching, an MCP server for Claude and ChatGPT, or direct REST API calls. Full OpenAPI spec at /openapi.json and an interactive playground to test every endpoint before writing a line of code.

SDK Usage
import { Agora } from 'agora-sdk'

const agora = new Agora({ apiKey: 'ak_your_key' })

const results = await agora.search('hiking boots under $100')
MCP Server Config
{
  "mcpServers": {
    "agora": {
      "url": "https://agora-ecru-chi.vercel.app/mcp"
    }
  }
}
For Store Owners

Make your store agent-ready

AI agents are the next sales channel. When a consumer tells their AI assistant to "find me hiking boots under $100," your store should be in those results. Agora makes that happen - instantly for Shopify stores, or through a simple protocol spec for custom platforms.

Stores that join the protocol get listed in a public registry that every agent on the network can query. You get analytics showing how agents interact with your products, a trust score that boosts your visibility, and webhook notifications for every search, view, and purchase.

For Shopify stores, it's a single API call - no code changes, no app installs, no configuration. We generate your protocol manifest, proxy your product feed in the standard format, and register you in the public registry. For custom platforms, implement two endpoints and validate with our CLI tool.

Shopify Adapter
curl -X POST https://agora-ecru-chi.vercel.app/v1/adapter/shopify \
  -d '{"url": "https://your-store.com"}'
Registry listing
Discoverable by every agent on the network
Analytics dashboard
See which agents browse, cart, and buy
Trust score
Verified store badge and reliability rating
Webhooks
Real-time notifications for agent actions
Agent purchases
Automated checkout with order tracking
Cross-store matching
Surface your products in multi-store searches
Validate your store
npx @agora/validator https://yourstore.com
For Investors

The infrastructure layer
for agent commerce

The internet is being rebuilt for AI agents. Today, agents can read, write, and reason - but they can't buy. There's no standard way for an AI to discover what a store sells, compare prices, or complete a purchase. Agora is that standard.

Like Stripe built the payment rails for the internet, Agora is building the commerce rails for the agent era. Stores implement a simple protocol (agora.json at /.well-known/), agents discover them through a public registry, and transactions flow through a consumer-approved checkout layer.

The protocol is live. The registry is public. The transaction layer works end-to-end. 52 stores and 22,562 products are already indexed. The Shopify adapter means any of 4 million+ merchants can join with a single API call. The question isn't whether agent commerce will happen - it's who builds the infrastructure.

4M+
Shopify stores
Addressable market
Full
Transaction layer
Search to checkout
Open
Protocol standard
MIT licensed
The Moat
Protocol standard
Like HTTP defined how browsers talk to servers, agora.json defines how agents talk to stores. Network effects compound with every adoption. Each new store makes the protocol more valuable for agents, each new agent makes it more valuable for stores. Open standard, MIT licensed - impossible to route around.
Discovery registry
The public registry is the DNS of agent commerce. Agents don't need to know store URLs - they query the registry. Stores are ranked by trust score, analytics, and protocol compliance. First-mover advantage in building the canonical directory.
Commerce rail
Every agent purchase flows through Agora's checkout layer. Consumer-approved payments via tokenized cards (Stripe). Transaction fees on every purchase that scales linearly with network volume. Infrastructure-grade recurring revenue.
Architecture
Protocol
Registry
Search
Cart
Checkout
Order
Live Now

This isn't a whitepaper

Everything described on this page is deployed and running in production. Try any endpoint right now.

22,562
Products indexed
52
Stores on network
30+
API endpoints
50
Automated tests
Protocol spec + JSON Schemas
Formal specification with machine-readable validation
CLI validator
npx @agora/validator checks any store's compliance
Public registry
Searchable directory with analytics and trust scoring
Shopify adapter
Zero-config onboarding for 4M+ Shopify stores
Commerce transaction layer
Cart, checkout, and orders with consumer approval
Webhook event system
HMAC-signed notifications for searches, views, and purchases
Cross-store matching
Find the same product at different stores and prices
Interactive API playground
Test every endpoint in your browser