Skip to main content
GET
/
core
/
countries
/
{country}
Get country
curl --request GET \
  --url https://api.enterprise.sandbox.uphold.com/core/countries/{country} \
  --header 'Authorization: Bearer <token>'
{
  "country": {
    "code": "GB",
    "name": "United Kingdom",
    "asset": "GBP",
    "restrictions": [],
    "subdivisions": [
      {
        "code": "GB-BAS",
        "name": "Bath and North East Somerset",
        "restrictions": []
      },
      {
        "code": "GB-LND",
        "name": "London, City of",
        "restrictions": []
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://developer.uphold.com/llms.txt

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

Authorizations

Authorization
string
header
required

OAuth 2.0 authentication.

Path Parameters

country
string
required

The unique code of the country.

Pattern: ^[A-Z]{2}$

Response

Country retrieved.

country
object