FX rates

Read the current FX rates we use to price onramp and offramp transactions.

GET/api/v1/fx-rates
Query parameters
All parameters are optional.
NameTypeDescription
basestring (ISO 4217)Filter to pairs where this is the base currency.
quotestring (ISO 4217)Filter to pairs where this is the quote currency.
Response · 200
rate is a decimal string to preserve precision.
{
  "data": [
    {
      "base": "USD",
      "quote": "NGN",
      "rate": "1485.50000000",
      "updatedAt": "2026-05-28T10:42:00.000Z"
    }
  ]
}
GET /api/v1/fx-rates
curl
curl "partner.dattaremit.com/api/v1/fx-rates?base=USD&quote=NGN" \
  -H "Authorization: Bearer sk_live_..."