Choose your path. EUR settlement for AI agents — USDC to EUR via SEPA Instant on Base.
One command. No API keys, no signup, no configuration.
pip install asterpay
3 lines to check API health and discover all endpoints.
from asterpay import AsterPay client = AsterPay() # Check API (free) print(client.health()) # Get ASTERPAY token tiers (free) tiers = client.token.tiers() for t in tiers['tiers']: print(f"{t['name']}: {t['discount']} off") # Discover all paid endpoints (free) endpoints = client.discovery.resources() print(f"{len(endpoints['resources'])} endpoints available") # Paid endpoint (requires x402 USDC payment): # price = client.market.price("bitcoin") # $0.005
Hit the button to call the live API right now.
python quickstart.py
Copy this config into your claude_desktop_config.json or Cursor MCP settings.
{
"mcpServers": {
"asterpay": {
"command": "npx",
"args": ["@asterpay/mcp-server"]
}
}
}
AsterPay tools appear automatically — 16 tools, no API keys needed.
get_crypto_price — Real-time prices $0.005 ai_summarize — Text summarization $0.004 ai_sentiment — Sentiment analysis $0.01 ai_translate — Multi-lang translate $0.02 wallet_score — Wallet reputation $0.05 token_analysis — Token security $0.10 settlement_estimate — USDC → EUR quote FREE discover_endpoints — List all endpoints FREE ... and 8 more
Just ask in natural language. Claude uses AsterPay tools automatically.
"What are the AsterPay token tier levels and discounts?" Claude will automatically use the check_token_tiers tool and return a formatted response with all 5 tiers.
No install. Just curl.
curl https://x402-api-production-ba87.up.railway.app/health
List all available endpoints with pricing and schemas.
curl https://x402-api-production-ba87.up.railway.app/discovery/resources
Check ASTERPAY tier system — fully free endpoint.
curl https://x402-api-production-ba87.up.railway.app/v1/token/tiers