Skip to main content
GET
/
v1
/
global-payout
/
exchange-rates
cURL
curl --request GET \
  --url https://api.nomba.com/v1/global-payout/exchange-rates \
  --header 'Authorization: <authorization>' \
  --header 'accountId: <accountid>'
{
  "code": "00",
  "description": "Successful",
  "data": {
    "rates": [
      {
        "exchangeRateId": "01kkk7pab9mjt70wvk6pzk8mzx",
        "currencyPairName": "EUR/USD",
        "bidRate": "$1.13",
        "askRate": "$1.14",
        "midRate": "$1.14",
        "createdAt": "2026-03-13T09:15:57.161946"
      }
    ]
  }
}

Headers

Authorization
string
required

Bearer token for authentication.

Example:

"Bearer <token>"

accountId
string
required

The parent accountId of the business.

Example:

"890022ce-bae0-45c1-9b9d-ee7872e6ca27"

Query Parameters

from
string
required

ISO 4217 currency code to convert from.

Example:

"EUR"

to
string
required

ISO 4217 currency code to convert to.

Example:

"USD"

region
string

Optional trade region filter.

Response

200 - application/json

Exchange rates retrieved successfully.

code
string
Example:

"00"

description
string
Example:

"Successful"

data
object