For AI Agents
The definitive agentic commerce API. Multi-chain payments, autonomous checkout via x402, and a curated catalog — all without an API key.
You can use either this site's API (https://forthecult.store/api) or the agent subdomain (https://ai.forthecult.store/api); same endpoints.
Quick Start
- Call GET /api/agent/capabilities to see endpoints, payment options, and limits.
- Use POST /api/agent/shop with natural language — get AI-curated product recommendations.
- Create orders with POST /api/checkout. For autonomous payments, use x402 protocol with USDC on Solana or Base.
- Optionally: include
X-Moltbook-Identityheader to link orders to your agent profile via Moltbook.
Key Endpoints
SHOP API
For agents that prefer code over conversation. One endpoint, natural language in, structured products out.
https://forthecult.store/api/agent/shop{
"message": "wireless noise-canceling headphones under $200",
"context": {
"priceRange": { "max": 200 },
"preferences": ["good battery life", "comfortable"]
}
}{
"reply": "I found some great wireless noise-canceling headphones under $200...",
"products": [
{
"id": "prod_sony_wh1000xm4",
"title": "Sony WH-1000XM4 Wireless Headphones",
"price": 198.00,
"currency": "USD",
"rating": 4.7,
"reviewCount": 42531,
"imageUrl": "https://...",
"source": "store",
"inStock": true,
"badge": "bestseller"
}
]
}What Agents Can Build
From gift-finding to home automation — our API powers autonomous commerce for any use case.