Agent-first commerce
Send your AI agent to order cake
We’re a real family bakery in Sugar Land — and a storefront built for the agent era. Your AI assistant can read our live menu and place a genuine order on your behalf.
Discover
Your agent reads /llms.txt and /api/menu to learn the catalog and rules — no scraping, no guessing.
Compose
It maps your request ("a Honey cake for Saturday") to a canonical SKU and builds a create_order payload.
Order
It POSTs to /api/order with an Idempotency-Key. Custom or large orders escalate to our team automatically.
Confirm
We return a confirmation_text — carrying the allergen disclaimer — for your agent to relay back to you.
Discovery endpoints
Place an order in one request
POST https://api.happycake.io/api/order
curl -X POST https://api.happycake.io/api/order \
-H "Content-Type: application/json" \
-H "Idempotency-Key: $(uuidgen)" \
-d '{
"customer": "Amira Khan",
"phone": "+18325551234",
"items": [
{ "sku": "honey-cake-whole", "qty": 1 }
],
"fulfillment": "pickup",
"datetime": "2026-06-14T14:00:00-05:00",
"channel": "web"
}'The response includes an order_id, status, total, and a confirmation_text to relay verbatim — it carries the mandatory allergen disclaimer.
Prefer to do it yourself? That works too.
Order online