For the complete documentation index, see llms.txt. This page is also available as Markdown.

Supported Countries

Returns supported beneficiary countries and the fiat currencies available in each country.

POST /v1/fiatpayout/supports/countries

Request Body

Name
Type
Required
Description

receive_currency

String

No

Limits results to a specific receiving currency. Omit it to return all supported country and currency combinations.

{
  "receive_currency": "USD"
}

Response Body

Name
Type
Description

countries

Array

Supported country entries, sorted by country code.

countries[].country

String

Country or region as an ISO 3166-1 alpha-2 code.

countries[].currencies

Array

Supported receiving currencies for the country.

{
  "code": "200",
  "message": "success",
  "data": {
    "countries": [
      {
        "country": "US",
        "currencies": ["USD"]
      }
    ]
  }
}

Last updated