GET
/
v1
/
countries
/
{countryCode}
Retrieve 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 authentication header of the form Bearer <token>, where <token> is your auth token.

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.