List skills
GET
/api/v1.1/{country_code}/skill-taxonomies/{taxonomy_pk}/skills/Returns a paginated list of all skills in a given skill taxonomy.
Example uses for this data include creating a local copy of a skill taxonomy, or populating a dropdown in a user interface.
Request
Path Params
country_code
string
required
A two character code that specifies which country dataset to query.
Example:
gb
Match pattern:
[a-z]{2}
taxonomy_pk
integer
required
The unique ID of the skill taxonomy from which to list skills.
Example:
1
Query Params
page
integer
optional
A specific page of results to return from a paginated dataset.
Default:
1
page_size
integer
optional
The number of results to include per page, from a paginated dataset.
Default:
5
Request samples
Responses
Request successful.(200)
Request successful.
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
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/skill-taxonomies/1/skills/?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/skill-taxonomies/1/skills/?page=2
results
array[object (AdzunaSkill) {2}]
optional
An array of skills.
id
integer
required
The unique ID of the skill.
>= -2147483648<= 2147483647
name
string
required
The name of the skill.
<= 128 characters
Example
{
"count": 1,
"next": "https://api.intelligence.adzuna.com/api/v1.1/gb/skill-taxonomies/1/skills/?page=4",
"previous": "https://api.intelligence.adzuna.com/api/v1.1/gb/skill-taxonomies/1/skills/?page=2",
"results": [
{
"id": 32049,
"name": "3D Modelling"
}
]
}
Last modified: 5 months ago