AI agents are browsing the web, searching for products, and making purchases.
Agents Want makes your store instantly readable and actionable for them —
like robots.txt, but for agents.
AI agents browse websites designed for humans — clicking buttons, parsing visual layouts. It's 10-100x slower than a structured API.
Any UI change breaks the agent. HTML selectors break. Product data is scattered across DOM elements. No reliability.
When ChatGPT says "buy me headphones under $100," only agent-readable stores get the order. Yours isn't ready.
One click via Shopify OAuth. Agents Want creates a Cloudflare Worker proxy that sits in front of your store. No code changes needed.
/agent.jsonYour store gets a capability declaration that AI agents can discover. It tells agents: "I have products, search, and collections available via structured endpoints."
Instead of scraping HTML, agents call /agent/v1/products, /agent/v1/search?q=... and get clean JSON. Fast, reliable, structured.
See which agents visit, what they search for, what they attempt to buy. Agent analytics like Google Analytics for bots.
GET /agent.json
{
"protocol": "agentswant/0.1",
"store": "mystore.myshopify.com",
"capabilities": [
{ "endpoint": "/agent/v1/products", "method": "GET", "description": "List products" },
{ "endpoint": "/agent/v1/search", "method": "GET", "description": "Search products" },
{ "endpoint": "/agent/v1/collections", "method": "GET", "description": "List collections" }
]
}
// Agent searches for products:
GET /agent/v1/search?q=wireless+headphones
{
"query": "wireless headphones",
"results": [{ "title": "AirPods Pro", "price": "$249", ... }],
"count": 12
} Get started
For growing stores
Multi-store & teams
Enter your Shopify domain to get started. Free forever.