GET
/
countries
/
List supported countries
curl --request GET \
  --url https://sandbox.prezio.eu/api/countries/ \
  --header 'Authorization: <api-key>'
{
  "count": 12,
  "next": "https://api.prezio.com/api/countries/?page=2",
  "previous": "https://api.prezio.com/api/countries/?page=1",
  "results": [
    {
      "id": "DK",
      "name": "Denmark",
      "code": "DK",
      "available_interval_minutes": [
        15,
        60
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Token-based authentication with required prefix "Token"

Query Parameters

page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

A search term.

Response

200
application/json

OK

The response is of type object.