Core API
- Concepts
- Authentication
- Countries
- Users
- KYC
- Capabilities
- Terms of Service
- Files
- Assets
- Accounts
- External Accounts
- Transactions
- Webhooks
Widgets API
- Payment
Get country
Retrieve a country by code.
GET
/
core
/
countries
/
{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": []
}
]
}
}
Authorizations
OAuth 2.0 authentication.
Path Parameters
The unique code of the country.
Response
200
application/json
Country retrieved.
The unique code of the country.
The name of the country.
The national asset of the country.
The restrictions of the country.
The scope of the restriction.
Available options:
citizenship
, geolocation
, phone
, residence
The subdivisions of the country.
The unique code of the subdivision.
The name of the subdivision.
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": []
}
]
}
}