Connect AsterPay in one line.
Drop AsterPay into any agent: an MCP server, a Python SDK, or a plain HTTP call. Free read endpoints (trust score, settlement estimate) need no signup and no API key.
Time to first paid call: under 10 minutes.
Your first call
Estimate a USDC to EUR settlement. No auth required for read endpoints. Pick your language.
# Free read endpoint, no API key — estimate 100 USDC → EUR curl "https://x402.asterpay.io/v1/settlement/estimate?amount=100"
from asterpay import AsterPay client = AsterPay() # no key needed for read endpoints quote = client.settlement.estimate(amount_usdc=100) print(quote) # netEurAmount, eurRate, fees, estimatedSepaTime
const res = await fetch( "https://x402.asterpay.io/v1/settlement/estimate?amount=100" ); const { data } = await res.json(); console.log(data.netEurAmount, data.estimatedSepaTime);
// Add the AsterPay MCP server to any MCP-capable agent { "mcpServers": { "asterpay": { "command": "npx", "args": ["-y", "@asterpay/mcp-server"], "env": { "ASTERPAY_BASE_URL": "https://x402.asterpay.io" } } } }
Paid endpoints accept either x402 or MPP payment proofs on the same call. Same surface, two protocols.
Use it in your agent
The MCP server exposes AsterPay's commerce tools (settlement estimate, KYA trust score, market data, merchant discovery, agent payments) to any MCP client. No API key.
~/.cursor/mcp.jsonclaude_desktop_config.jsonextensions_config.jsonClawHub (OpenClaw) ships AsterPay as a bundled connector. DeerFlow agents get KYA trust score, merchant resolve, and USDC→EUR settlement estimate via the remote MCP server — source at github.com/AsterPay/deerflow-skill. Building a host yourself? Point any MCP stdio client at npx @asterpay/mcp-server.
Every surface
Pick the integration that matches your stack. All hit the same facilitator.
Python SDK
For Python agents and backends. Typed client over the HTTP API.
MCP server
For any LLM agent that speaks MCP. Commerce tools, no API key.
Direct HTTP
Any language. Free read endpoints, x402 or MPP for paid calls. Import the OpenAPI 3.1 spec or Postman collection to auto-generate a client.
Attest CLI
EU AI Act readiness scan for your agent or API, from the terminal.