// SAME ENGINE
Same routing engine the AI uses.
The API serves the same /v1/quote endpoint that powers the on-site composer. Same pricing, same competitor scan, same multi-leg routing decisions. No "API tier" with different rates.
// API
The Cambio API exposes the same quoting, routing, and execution endpoints the AI composer uses on the website. REST + JSON. Production-ready. 60 requests per minute on the free tier — higher on request.
// QUICK START
Replace $CAMBIO_API_KEY with your key from Account → API Settings.
curl https://api.cambio.one/v1/quote \
-H "x-api-key: $CAMBIO_API_KEY" \
-d '{
"from": "BNB",
"fromNetwork": "bsc",
"to": "USDT",
"toNetwork": "bsc",
"amount": "0.3"
}'// SAME ENGINE
The API serves the same /v1/quote endpoint that powers the on-site composer. Same pricing, same competitor scan, same multi-leg routing decisions. No "API tier" with different rates.
// REAL-TIME
Each quote response includes the competitor price strip — up to six recognizable instant-swap brands (SimpleSwap and others) that Bestchange lists for the pair, recognizable names first. Rates are Bestchange aggregator snapshots and may differ from a provider's own direct rate.
// FAIR USE
Free tier covers most integrations. Production-grade integrations (DeFi aggregators, multi-chain wallets, custodial frontends) get elevated limits — email support with your expected throughput.
// ENDPOINTS
Full reference + interactive try-it-out at https://api.cambio.one/api-docs. Machine-readable schema at https://api.cambio.one/api-docs.json.
/v1/currenciesList all 7 launch tokens + 6 supported networks.
/v1/pairsList the 62,231 directional launch pairs with min/max amounts.
/v1/quoteReal-time quote for a pair + amount. Includes the live competitor comparison strip.
/v1/exchangesCreate a swap order. Returns a one-time deposit address.
/v1/exchanges/:idGet the live status, confirmations, and tx hashes for an order.
/v1/exchanges/:id/cancelCancel an order BEFORE the deposit lands on-chain. After deposit, cancellation is not guaranteed.
// READY TO BUILD
Free tier covers most integrations. No credit card required. Higher rate limits and webhooks available on request.