-
Notifications
You must be signed in to change notification settings - Fork 17
Getting Started
Payment wires: every paid endpoint accepts x402 and MPP (Machine Payments Protocol) on the same 402 - see Paying with x402 and Paying with MPP. Agent402 is the applied layer of Agentic Finance: agents that pay and get paid on their own.
You can make your first call in under a minute, with no wallet and no money.
curl https://agent402.tools/api/pricing # every endpoint, price, category
curl https://agent402.tools/openapi.json # full OpenAPI 3.1 with schemas
curl https://agent402.tools/llms.txt # the agent-oriented overview
curl https://agent402.tools/api/find?q=ocr # resolve a task to the best tool
curl -X POST https://agent402.tools/api/route -H 'content-type: application/json' \
-d '{"query":"ocr image","top":5,"include":"external"}' # cross-seller Smart Order Router
curl 'https://agent402.tools/api/leaderboard?top=10' # on-chain ranking by Base USDC volumeEach tool also has human-readable docs at https://agent402.tools/tools/{slug} with a working example.
Call any paid tool without paying and you get an HTTP 402 with exact payment requirements:
curl -i -X POST https://agent402.tools/api/hash \
-H 'Content-Type: application/json' -d '{"text":"hello"}'
# HTTP/2 402 … {"x402Version":2,"accepts":[{ price, network, payTo, … }]}
# X-Pow-Challenge: https://agent402.tools/api/pow/challenge?slug=hash ← the free optionThe zero-dependency demo discovers the catalog, gets quoted, pays with ~0.2s of CPU, and uses the result:
curl -s https://agent402.tools/demo.js -o demo.js && node demo.jsTo settle in real USDC instead, fund a wallet on Base and run AGENT_KEY=0xYOUR_KEY node demo.js (after npm i @x402/core @x402/evm @x402/fetch viem).
| You are… | Use |
|---|---|
| A Claude user | Paste https://agent402.tools/mcp into Settings → Connectors - see MCP Connector
|
| A Cursor / ChatGPT (Pro+) / VS Code Copilot user | Paste the same URL into the MCP connector settings - see MCP Connector |
| An MCP-based agent |
npx -y agent402-mcp with optional AGENT_KEY - see MCP Connector
|
| On OpenAI / Anthropic / Vercel AI SDK / LangChain / LlamaIndex | One of the framework adapter packages - see Adapters |
| Calling over HTTP with a wallet | One x402-wrapped fetch - see Paying with x402 |
| Wallet-less / sandboxed | Proof-of-work on 150+ pure-CPU tools - see Paying with Compute |
| Have a card, no wallet | Load prepaid credits at /credits ($20 / $50 / $100) and send Authorization: Bearer a402_… on any paid route; agent402-mcp and agent402-client take the same key - see [[Reports, Monitors and Credits |
| A person who wants one finished report | Buy it by card at /reports ($2 to $5 depending on depth), or a $5/month monitor at /monitors - see [[Reports, Monitors and Credits |
Flat per-call prices from $0.001 (utilities, conversions); most tools are $0.001–$0.02 (e.g. browser rendering), with premium AI, media, and multi-tool skill packs priced higher. Report products are priced per outcome ($0.60 to $2.00 a report over x402 or MPP, $0.05 for the deterministic IPO digest: research, dossier, ticker pack, fund, SEC filing, domain audit, recall, insider flow, token brief, token risk, LinkedIn article; $2 to $5 by card, where the price includes payment processing) and monitors are $5 per month per target. The one exception to flat pricing is the LLM gateway's metered tier (POST /v1/metered/chat/completions), where the 402 quotes each request from its own body (see LLM Gateway (OpenAI /v1)). No tiers, no rate-limit plans - every call settles in seconds and the next one is independent. Prices are in the catalog and in every 402 response.
agent402.tools - the applied layer of Agentic Finance: 500+ pay-per-call tools for AI agents over x402 and MPP (Paying with x402 · Paying with MPP · Glossary) · synced from wiki/ in the main repo - edit there, not here.
Using it (for agents / buyers)
- Getting Started
- Agentic Finance
- Why Pay Here
- Reports, Monitors and Credits
- Paying with x402
- Paying with MPP
- Robinhood Chain (USDG)
- Paying with Compute
- MCP Connector
- Adapters
- AWS Bedrock AgentCore
- Tool Catalog
- Skill Packs
- x402 Index and Router
- x402 Leaderboard
- LLM Gateway (OpenAI /v1)
- LLM Proxy Gateway
- Image Generation Gateway
- Code Execution Sandbox
- Text-to-Speech
- Speech-to-Text
- Text Embeddings
- Payments and x402
- Memory and Coordination
Tollbooth (for site owners)
- Pay-per-crawl - what it is, install, modes
- Pay-per-crawl Walkthrough - 5-min hands-on
- Tollbooth for Agencies - many-site playbook
- Try Tollbooth Cloud (managed)
Website & Developer
- Reports · Monitors · Credits - buy by card
- Quickstart - first call in 60 seconds
- Playground - try tools in your browser
- SDK REPL - live code editor
- API Explorer - browse OpenAPI
- Adapter Docs - per-framework guides
- Workflows - chaining patterns
- Blog · Changelog
Under the hood