Skip to main content

Rates & Market Data

Access real-time exchange rates, order books, and market data for all supported currency pairs.

Indicative Rates

Get the current exchange rate for a currency pair:

GET /api/v1/rates?base=USDC&counter=EUR

Response:

{
"base": "USDC",
"counter": "EUR",
"rate": 0.9216,
"timestamp": "2026-01-15T10:25:00Z"
}

All Rates

Get rates for all supported pairs:

GET /api/v1/rates/all

Channel Spot Rates

Get real-time rates for a specific payment channel:

GET /api/v2/channel/{uuid}/spot-rates

This returns the rate that will be applied to the next payment through this channel.

Market Data

Tickers

GET /api/v1/market-data/tickers?pair=USDC-EUR

Order Books

GET /api/v1/market-data/order-book?pair=BTC-USD

Aggregated Order Books

Combined order book across all connected liquidity venues:

GET /api/v1/market-data/order-book/aggregated?pair=BTC-USD

Rate Updates

Rates are updated in real-time. For the most current rate:

  • Use the estimate endpoint before executing a conversion
  • Channel spot rates reflect the rate applied at payment time
  • Rates in payment responses are locked for the payment duration

Next Steps