// API

Same routing engine. Same prices.

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

A quote in 3 lines.

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"
  }'

What you get.

// 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.

// REAL-TIME

Live competitor comparison on every quote.

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

60 req/min by default. Higher on request.

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

Six endpoints. Everything you need.

Full reference + interactive try-it-out at https://api.cambio.one/api-docs. Machine-readable schema at https://api.cambio.one/api-docs.json.

GET/v1/currencies

List all 7 launch tokens + 6 supported networks.

GET/v1/pairs

List the 62,231 directional launch pairs with min/max amounts.

GET/v1/quote

Real-time quote for a pair + amount. Includes the live competitor comparison strip.

POST/v1/exchanges

Create a swap order. Returns a one-time deposit address.

GET/v1/exchanges/:id

Get the live status, confirmations, and tx hashes for an order.

POST/v1/exchanges/:id/cancel

Cancel an order BEFORE the deposit lands on-chain. After deposit, cancellation is not guaranteed.

// READY TO BUILD

Get a key. Ship in an afternoon.

Free tier covers most integrations. No credit card required. Higher rate limits and webhooks available on request.