List locations (statistical areas)
GET
/api/v1.1/{country_code}/location-types/{type_pk}/locations/Returns a paginated list of all supported locations/statistical areas in our taxonomy.
Example uses for this data include creating a local copy of our location taxonomy, or populating a dropdown in a user interface.
Request
A two character code that specifies which country dataset to query.
The unique ID specifying which type of location / statistical areas to return.
A specific page of results to return from a paginated dataset.
The number of results to include per page, from a paginated dataset.
Request samples
Responses
The total number of results in the underlying dataset.
The URL to retrieve the next page of results.
The URL to retrieve the previous page of results.
An array of locations / statistical areas.
The unique ID of the location / statistical area.
The name of the location / statistical area.
The official government code for the location / statistical area.
The unique ID of the location / statistical area type for this location / statistical area.
The unique ID of the country to which this location / statistical area belongs.
{
"count": 1,
"next": "https://api.intelligence.adzuna.com/api/v1.1/gb/location-types/20/locations/?page=4",
"previous": "https://api.intelligence.adzuna.com/api/v1.1/gb/location-types/20/locations/?page=2",
"results": [
{
"id": 20,
"name": "North East (England)",
"code": "TLC",
"type_id": 20,
"country_id": 1
}
]
}