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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer
default:10

Maximum number of items to return in a single page. Must be between 1 and 50. Defaults to 10 if not specified.

Required range: 1 <= x <= 50
after
string | null

Pagination cursor for fetching the next page of results. Set this to the 'next' cursor value from a previous response to continue paginating forward.

Maximum length: 2000

Response

200 - application/json

OK

The response is of type object.