Skip to main content
GET
/
v1
/
fx
/
cross-rate-quotes
/
indicator-rates
Get indicative cross-rates for display
curl --request GET \
  --url https://api.example.com/v1/fx/cross-rate-quotes/indicator-rates \
  --header 'Authorization: Bearer <token>'
{
  "estimated": false,
  "rates": {
    "EUR": 1720.5,
    "GBP": 2524.47,
    "USD": 1623.45
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.zuba.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Enter Auth0 JWT token

Response

200 - application/json
estimated
boolean
required

True if any rate was served from the stored-rate fallback (i.e. live cross-rate providers were unavailable). Fallback rates may diverge from the rate a customer actually receives at payout.

Example:

false

rates
object
required

Map of foreign currency code to its NGN rate (NGN per 1 unit of foreign currency, including spread/markup). Does not include fixed per-transaction fees.

Example:
{
"EUR": 1720.5,
"GBP": 2524.47,
"USD": 1623.45
}