GET
/
v1
/
countries
/
{countryCode}
Get Country
curl --request GET \
  --url https://api.monime.io/v1/countries/{countryCode} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "messages": [
    "<any>"
  ],
  "result": {
    "code": "SL",
    "name": "Sierra Leone",
    "currency": {
      "code": "SLE",
      "unit": "cent",
      "unitLength": 2
    },
    "supportedCurrencies": [
      "SLE"
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer HTTP authentication specified with the header Authorization: Bearer <access_token>

Headers

Monime-Version
enum<string> | null

Specifies which version of the Monime API will handle this request.

Available options:
caph.2025-08-23,
caph.2025-06-20

Path Parameters

countryCode
string
required

The ISO 3166-1 alpha-2 country code.

Example:

"SL"

Response

200 - application/json

OK

The response is of type object.