cURL
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" ] } }
Retrieves detailed information about a specific country, including its ISO code, name, currencies, and any supported capabilities on the Monime platform.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ISO 3166-1 alpha-2 country code.
"SL"
OK
The response is of type object.
object