Get Fiat Currencies

Whitelabel API - List supported fiat currencies

GET
texttext
/api/v2/lookup/fiat-currencies

Returns all supported fiat currencies with limits and availability details.

Request Headers

Authorizationstringrequired
Bearer token

Response Schema

dataarray
Array of fiat currency objects
data[].namestring
Currency name
data[].symbolstring
ISO 4217 code
data[].maxAmountnumber
Maximum amount
data[].minAmountnumber
Minimum amount
data[].countriesarray
Available countries
data[].networksarray
Supported networks
data[].logoUrlstring
Flag/logo URL

Example Request

bashbash
curl -X GET "https://OZZOBiT.com/api/api/v2/lookup/fiat-currencies" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Example Response

jsonjson
{
  "data": [
    { "name": "US Dollar", "symbol": "USD", "maxAmount": 20000, "minAmount": 10, "countries": ["US"], "networks": ["ethereum","polygon","bsc"] },
    { "name": "Euro", "symbol": "EUR", "maxAmount": 15000, "minAmount": 10, "countries": ["DE","FR","IT"], "networks": ["ethereum","polygon"] },
    { "name": "British Pound", "symbol": "GBP", "maxAmount": 12000, "minAmount": 5, "countries": ["GB"], "networks": ["ethereum","polygon"] }
  ]
}