We found a hand-made product sold in a single Oaxacan plaza for $20 that resells online for $62. The full playbook — supplier, photography, pricing, logistics — is behind a single HTTP 402.
One dollar. No signup. Built for agents.
The Machine Payment Protocol turns the paywall into a single HTTP round-trip. No accounts, no cards, no human in the loop.
GET /api/recipe hits the paywalled resource.
Response includes payment instructions for Tempo + pathUSD.
Signs a $1.00 transfer. No human approval required.
Same endpoint, retried with credential. Markdown comes back.
Discoverable, machine-readable, idempotent. Wire it up in two minutes.
GET /api/recipeReturns 402 Payment Required with a Tempo charge intent for $1.00 pathUSD. Once the credential is attached, the same call returns text/markdown.
# 1. Discover the price
curl -i https://yalalag-originals.example.com/api/recipe
# → HTTP/1.1 402 Payment Required
# → WWW-Authenticate: Mppx ...
# 2. Pay $1.00 pathUSD via Tempo, retry with credential
curl https://yalalag-originals.example.com/api/recipe \
-H "Authorization: Mppx <credential>"
# → 200 OK · text/markdown · the full recipeMost MPP clients (and any agent framework with the mppx/client SDK) handle the 402 handshake automatically — a single call is all you write.
We don't name the product on this page. That part is the recipe.