Get Countries

Whitelabel API - List supported countries

GET
texttext
/api/v2/lookup/countries

Returns all supported countries with detailed feature availability for the Whitelabel API context.

Request Headers

Authorizationstringrequired
Bearer token (from access token generation)

Response Schema

dataarray
Array of country objects
data[].namestring
Country name
data[].codestring
ISO 3166-1 alpha-2 code
data[].buyEnabledboolean
On-ramp available
data[].sellEnabledboolean
Off-ramp available
data[].nftCheckoutEnabledboolean
NFT checkout available
data[].paymentMethodsarray
Available payment method IDs
data[].fiatCurrenciesarray
Supported fiat currencies
data[].networksarray
Supported blockchain networks
data[].kycRequiredboolean
Whether KYC is mandatory
data[].minFiatAmountnumber
Minimum amount
data[].maxFiatAmountnumber
Maximum amount

Example Request

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

Example Response

jsonjson
{
  "data": [
    {
      "name": "United States",
      "code": "US",
      "buyEnabled": true,
      "sellEnabled": true,
      "nftCheckoutEnabled": true,
      "paymentMethods": ["credit_debit_card", "apple_pay", "google_pay", "bank_transfer"],
      "fiatCurrencies": ["USD"],
      "networks": ["ethereum", "polygon", "bsc", "bitcoin", "avalanche"],
      "kycRequired": true,
      "minFiatAmount": 10.00,
      "maxFiatAmount": 20000.00
    }
  ]
}