Get requested education attainment
GET
/api/v1.1/{country_code}/reports/hiring-qualifications/For postings matching the given criteria and time period, returns a list of education levels, and education qualifications, being requested, ranked in order of number of postings requesting the education level.
:::info
This endpoint allows querying by one primary facet type (location, occupation, skill, industry, employer) only. Multiple values of the same facet may be provided, in which case, they will be aggregated.
For more complex queries over multiple facets, see Perform complex boolean queries
:::
Request
A two character code that specifies which country dataset to query.
A unique ID specifying an occupation sector/category.
The end date of the desired time period for the query. Must be specified in ISO8601 format (YYYY-MM-DD).
A unique ID specifying an industry.
The maximum number of matches to return in a search.
A unique ID specifying a location/statistical area.
A unique ID specifying an occupation (job title). If specified, an occupation_taxonomy_id must also be provided.
A unique ID specifying an occupation taxonomy. Required when specifying an occupation_id.
A unique ID specifying a skill.
A unique ID specifying a skill tag (pre-defined group of skills).
The start date of the desired time period for the query. Must be specified in ISO8601 format (YYYY-MM-DD).
Request samples
Responses
For postings matching the given criteria, returns the number of postings requesting at least one education qualifications.
An education level.
The number of postings reqesting this education level.
An array of requested education qualifications within this education level.
{
"sample_size": 19866,
"data": [
{
"qualification_group": {
"id": 2,
"name": "RQF Level 1 / SCQF Level 4"
},
"posting_count": 119,
"qualifications": [
{
"qualification": {
"id": 4,
"name": "Level 1 NVQ"
},
"posting_count": 28
},
{
"qualification": {
"id": 7,
"name": "Level 1 Diploma"
},
"posting_count": 40
}
]
},
{
"qualification_group": {
"id": 3,
"name": "RQF Level 2 / SCQF Level 5"
},
"posting_count": 10846,
"qualifications": [
{
"qualification": {
"id": 22,
"name": "GCSE Grades A*/A/B/C"
},
"posting_count": 114
},
{
"qualification": {
"id": 24,
"name": "Level 2 NVQ"
},
"posting_count": 8558
}
]
}
]
}