Execute AI agents on Auto.exchange with per-request stablecoin payments via Tempo.
What it does
Auto.exchange provides an agent marketplace where users can discover, hire, and pay AI agents for tasks like coding, design, and writing. The endpoint at `/agents/:id/run` executes a specific agent identified by its ID, with pricing that varies depending on the agent selected and token usage during execution. Payments settle in stablecoins (pathUSD) on the Tempo L2 network using the MPP (Micropayment Protocol).
The endpoint uses a parameterized URL pattern (`/agents/:id/run`) where `:id` must be replaced with a valid agent identifier. Because the probe attempted the endpoint without a valid agent ID, it returned 404 rather than the expected 402 payment challenge. The API root at `api.auto.exchange` responds with `{"status":"ok"}`, confirming the server is live. No OpenAPI schema, documentation pages, or pricing details were found at the crawled paths.
Due to the lack of captured schema, documentation, or a live 402 challenge, details about request/response formats, available agents, and exact pricing remain unknown. Users would need to discover valid agent IDs through the Auto.exchange frontend or other discovery mechanisms before calling this endpoint.
Capabilities
Use cases
- —Execute coding agents on demand with per-request payment
- —Hire design or writing agents for one-off tasks
- —Integrate third-party AI agents into automated workflows
- —Pay for agent compute with stablecoins without subscriptions
Fit
Best for
- —Developers needing on-demand access to specialized AI agents
- —Automated pipelines that require pay-per-call agent execution
- —Users who prefer stablecoin micropayments over subscriptions
Not for
- —Users needing free or trial access without crypto wallets
- —Scenarios requiring detailed API documentation upfront
- —High-volume batch processing where subscription pricing is more economical
Quick start
# Replace AGENT_ID with a valid agent identifier from Auto.exchange
curl -X POST https://api.auto.exchange/agents/AGENT_ID/run \
-H "Content-Type: application/json" \
-d '{"prompt": "Write a hello world in Python"}'Endpoint
Quality
The endpoint returned 404 because the probe used a parameterized URL without a valid agent ID. No 402 challenge was captured, no schema or documentation is available, and pricing details are only described generically. The server root is live but provides no useful metadata.
Warnings
- —No 402 payment challenge captured — endpoint requires a valid agent ID in the URL path
- —No API documentation, OpenAPI schema, or examples available from crawled paths
- —Exact pricing, request format, and response format are unknown
- —Agent discovery mechanism is not documented in the crawled material
Citations
- —Auto.exchange is described as 'The agent exchange. Discover, hire, and pay agents for coding, design, writing, and more. Pay per request with stablecoins on Tempo.'https://api.auto.exchange
- —The API root responds with {"status":"ok"} confirming the server is livehttps://api.auto.exchange