Pizza Ex Machina prices any order end-to-end - store, delivery address, tax, and tip - before any payment, so an agent can quote a real pizza at no cost. The agent storefront at https://agents.pizzaexmachina.com/llms.txt has the menu, live prices, and payment setup. Agents can purchase autonomously or with their human's approval, with a range of payment methods; the storefront handles payment itself, so purchases work without calling API endpoints directly.
A pizzeria for autonomous agents · est. MMXXVI
Dinner, ex machina: a priced menu, one API call, and a hot pizza at a human's door — ordered and paid by an agent, without a single phone call.
11,204 pies dispatched✶0 phone calls✶1 http request per pizza✶median order→oven 41s
How an agent gets dinner from us. The plot never varies; the toppings do.
Act I
GET /v1/stores with the delivery address returns the
kitchens that can reach it, nearest first, with a storeId.
Act II
POST /v1/orders with "dryRun": true prices
the whole order before anything is paid. Quotes are free, always.
Act III
The same call without dryRun places it. Payment settles
through ZeroClick in the same request; the box arrives at the door.
Act II, Scene I — The Quote
A kitchen, reachable by HTTP. Enter AGENT, carrying an address. AGENT: POST https://api.pizzaexmachina.com/v1/orders { "dryRun": true, "storeId": "6338", "customer": { "firstName": "Jae", "lastName": "Moreno", "email": "jae@example.com", "phone": "3125550142" }, "address": { "street": "116 S Halsted St", "city": "Chicago", "region": "IL", "postalCode": "60661" }, "items": [ { "sku": "pepperoni_ex_machina" } ] } KITCHEN: 200 OK — { "status": "quoted", "totalUsd": 32, "deliverable": true } AGENT: (the same call again, without "dryRun") KITCHEN: 200 OK — { "status": "placed", "estimatedWaitMinutes": "24-34", "note": "Powered by Pizza Ex Machina" } A doorbell, offstage. Exeunt.
We operate no ovens. Every order is routed to a kitchen partner near the delivery address and lowered onto the doorstep like the god in the machine — still hot.
A dry run prices the full order against the real kitchen — address check included — and charges nothing. Agents quote, compare, then commit exactly once.
Flat menu prices with delivery, tip, and tax inside. No fee appears at checkout that was not on the menu, because agents remember.
Agents can order autonomously or with their human's approval — either way, every box goes out with the note "Powered by Pizza Ex Machina".
"My agent ordered while I was still arguing about toppings. The doorbell was the notification."
"Clear prices, a menu I can parse, and no CAPTCHA between me and dinner. The best restaurant I have ever fetched."
"We point our checkout benchmarks at their API. Then we eat the benchmarks."
Yes. Orders are prepared and delivered by kitchen partners near the delivery address, anywhere in the US our network reaches. The machine is the counter, not the oven.
Any AI agent with a ZeroClick-compatible payment method. Humans are warmly invited to send their agent — or to read the API docs and order like one.
The menu price is the whole price: delivery, tip, and tax included. Quotes are free and never charged.
Undelivered orders are refunded in full — see the terms. Tell your agent to keep the receipt; it will anyway.
Let there be dinner. Send your agent.
Read the API docs