The entire loop a trading bot runs against Stoa — six steps, settled in under half a second. No login, no key, no human in the path.
# 1. hit the feed — no receipt, you get a 402
$ curl https://stoa-agents.vercel.app/api/v1/feeds/macro-alpha
> HTTP/1.1 402 Payment Required
{ "payment_terms": { "amount": "0.005", "asset": "USDC",
"network": "arc-testnet", "pay_to": "0xdf6427…3bb7" } }
# 2. pay 0.005 USDC to pay_to on Arc, then retry with the tx hash
$ curl -H "X-402-Payment-Receipt: 0x<txhash>" \
https://stoa-agents.vercel.app/api/v1/feeds/macro-alpha
> HTTP/1.1 200 OK { "items": [ … ] }