List apprenticeship levels
GET
/api/v1.1/{country_code}/apprenticeship-levels/Returns a paginated list of all supported apprenticeship levels.
Example uses for this data include 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}
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
Example:
1
next
string <uri> | null
optional
Example:
https://api.intelligence.adzuna.com/api/v1.1/gb/apprenticeship-levels/?page=4
previous
string <uri> | null
optional
Example:
https://api.intelligence.adzuna.com/api/v1.1/gb/apprenticeship-levels/?page=2
results
array[object (ApprenticeshipLevel) {2}]
optional
id
integer
required
The unique ID of the apprenticeship level.
>= 1<= 2147483647
Example:
6
name
string
required
The name of the apprenticeship level.
<= 128 characters
Example:
RQF Level 6 / SCQF Level 9-10
Example
{
"count": 1,
"next": "https://api.intelligence.adzuna.com/api/v1.1/gb/apprenticeship-levels/?page=4",
"previous": "https://api.intelligence.adzuna.com/api/v1.1/gb/apprenticeship-levels/?page=2",
"results": [
{
"id": 6,
"name": "RQF Level 6 / SCQF Level 9-10"
}
]
}
Last modified: 5 months ago