Adzuna Intelligence API
HomeKnowledge BaseAbout
HomeKnowledge BaseAbout
  1. Location Data
  • Introduction
  • Access and Authentication
  • Taxonomies
  • Core Demand Data
    • Overview
    • Get the total number of postings
      GET
    • Get the total number of postings over time
      GET
    • Get the number of new postings
      GET
    • Get the number of new postings over time
      GET
    • Get posting duration data
      GET
    • Get time to fill data
      GET
  • Interest Quotient Data
    • Overview
    • Get interest quotient
      GET
    • Get interest quotient over time
      GET
  • Compensation Data
    • List job benefits
      GET
    • Search job benefits
      GET
    • Get mean and median salary
      GET
    • Get mean and median salary over time
      GET
    • Get salary distribution data
      GET
    • Get benefits offered
      GET
  • Location Data
    • List countries
      GET
    • List location (statistical area) types
      GET
    • List locations (statistical areas)
      GET
    • Search locations (statistical areas)
      GET
    • Get location quotient
      GET
    • Compare job demand acrosss geographic areas
      GET
    • Compare interest quotient across geographic areas
      GET
    • Compare location quotient across geographic areas
      GET
    • Compare median salary across geographic areas
      GET
  • Occupation Data
    • List occupation taxonomies
    • List occupation sectors (categories)
    • Search occupation sectors (categories)
    • List occupations
    • Search occupations
    • Get occupation sectors (categories) in demand
    • Get occupations in demand
    • Get popular occupation sectors (categories)
    • Get popular occupations
  • Industry Data
    • List industries
    • Search industries
    • Get industries hiring
    • Get popular industries
  • Skill Data
    • List skill taxonomies
    • List skill tags
    • Search skill tags
    • List skills
    • Search skills
    • Get requested skills
  • Education Data
    • List education levels
    • Search education levels
    • List education qualifications
    • Search education qualifications
    • Get requested education attainment
  • Apprenticeship Data
    • List apprenticeship levels
    • Search apprenticeship levels
    • List apprenticeship types
    • Search apprenticeship types
    • Get requested apprenticeship levels
  • Company and Employer Data
    • List companies
    • Search companies
    • Get companies hiring
    • Get popular employers
  • Public data
    • Claimant count
    • Gender pay gap
    • Job Density
  • Complex Queries
    • Overview
    • Defining a query
    • Specifying the primary metric
    • Specifying a date range
    • Supported dimensions
    • Specifying filters
    • Specifying a breakdown
    • Example queries
    • Performing a complex boolean query
  1. Location Data

List locations (statistical areas)

GET
/api/v1.1/{country_code}/location-types/{type_pk}/locations/
Location Data
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

Authorization
Add parameter in header
Authorization
Example:
Authorization: ********************
Path Params
country_code
string 
required
A two character code that specifies which country dataset to query.
Example:
gb
Match pattern:
[a-z]{2}
type_pk
integer 
required
The unique ID specifying which type of location / statistical areas to return.
Example:
21
Query Params
page
integer 
optional
A specific page of results to return from a paginated dataset.
Default:
1
Example:
1
page_size
integer 
optional
The number of results to include per page, from a paginated dataset.
Default:
5
Example:
5

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.intelligence.adzuna.com/api/v1.1/gb/location-types/21/locations/?page=1&page_size=5' \
--header 'Authorization;'

Responses

🟢200Request successful.
application/json
Body
count
integer 
optional
The total number of results in the underlying dataset.
Example:
1
next
string <uri> | null 
optional
The URL to retrieve the next page of results.
Example:
https://api.intelligence.adzuna.com/api/v1.1/gb/location-types/20/locations/?page=4
previous
string <uri> | null 
optional
The URL to retrieve the previous page of results.
Example:
https://api.intelligence.adzuna.com/api/v1.1/gb/location-types/20/locations/?page=2
results
array[object (Area) {5}] 
optional
An array of locations / statistical areas.
id
integer 
read-onlyrequired
The unique ID of the location / statistical area.
name
string 
required
The name of the location / statistical area.
<= 128 characters
code
string 
required
The official government code for the location / statistical area.
<= 16 characters
type_id
integer 
read-onlyrequired
The unique ID of the location / statistical area type for this location / statistical area.
country_id
integer 
read-onlyrequired
The unique ID of the country to which this location / statistical area belongs.
>= -2147483648<= 2147483647
Example
{
  "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
    }
  ]
}
Modified at 2024-07-22 14:09:20
Previous
List location (statistical area) types
Next
Search locations (statistical areas)
Built with