Skip to main content
GET
/
v3
/
countries
List supported countries
curl --request GET \
  --url https://api.moonpay.com/v3/countries
[
  {
    "alpha2": "GB",
    "alpha3": "GBR",
    "isAllowed": true,
    "isBuyAllowed": true,
    "isSellAllowed": true,
    "name": "United Kingdom",
    "supportedDocuments": [
      "additional_proof_of_income",
      "driving_licence",
      "national_identity_card",
      "passport",
      "proof_of_address",
      "proof_of_income",
      "residence_permit",
      "selfie"
    ]
  }
]

Documentation Index

Fetch the complete documentation index at: https://dev.moonpay.com/llms.txt

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

Response

Successful response — List of Countries

alpha2
string

The country's ISO 3166-1 alpha-2 code.

Example:

"GB"

alpha3
string

The country's ISO 3166-1 alpha-3 code.

Example:

"GBR"

isAllowed
boolean

Whether residents of this country can use the service.

Example:

true

isBuyAllowed
boolean

Whether residents of this country can buy cryptocurrencies.

Example:

true

isSellAllowed
boolean

Whether residents of this country can sell cryptocurrencies.

Example:

true

name
string

The country's name.

Example:

"United Kingdom"

supportedDocuments
enum<string>[]

A list of supported identity documents for the country.

Possible values are: additional_proof_of_income, driving_licence, national_identity_card, passport, proof_of_address, proof_of_income, residence_permit, selfie

Available options:
additional_proof_of_income,
driving_licence,
national_identity_card,
passport,
proof_of_address,
proof_of_income,
residence_permit,
selfie
Example:
[
"additional_proof_of_income",
"driving_licence",
"national_identity_card",
"passport",
"proof_of_address",
"proof_of_income",
"residence_permit",
"selfie"
]