Example queries
Example 1
"Hey Adzuna, tell me the overall job demand (unique postings) in the UK for March 2024"
{
"query": {
"metric": "demand",
"date_range": {
"type": "absolute",
"start": "2024-03-01",
"end": "2024-03-31"
}
}
}
Example 2
"Hey Adzuna, tell me the median salary in the UK over the past year, broken down by ITL/NUTS 1 region"
{
"query": {
"metric": "salary",
"date_range": {
"type": "relative",
"last_n_days": 365
},
"breakdown": {
"dimension": "location",
"location_type_id": 20
}
}
}
Example 3
Hey Adzuna, tell me the overall demand in the last 6 months in South East England (ITL/NUTS 1) but excluding the London Travel to Work Area, for occupations that are within the Information Technology Professionals SOC Minor Group (213) and are specifically requesting Java as a skill. Limit the data to the Information and Telecommunications industry (SIC major section J), and break the results down at 4 digit SOC occupation level!
{
"query": {
"metric": "demand",
"date_range": {
"type": "relative",
"last_n_days": 182
},
"filter": {
"type": "combined_rule",
"logic": "and",
"groups": [
{
"type": "combined_rule",
"logic": "and",
"groups": [
{
"type": "rule",
"dimension": "location",
"operator": "eq",
"target": {
"type": "object",
"id": 27,
"name": "South East (England)"
}
},
{
"type": "rule",
"dimension": "location",
"operator": "neq",
"target": {
"type": "object",
"id": 501,
"name": "London"
}
}
]
},
{
"type": "rule",
"dimension": "occupation",
"operator": "eq",
"target": {
"type": "object",
"id": 213,
"name": "Information Technology Professionals"
},
"taxonomy_id": 3
},
{
"type": "rule",
"dimension": "skill",
"operator": "eq",
"target": {
"type": "object",
"id": 35089,
"name": "Java"
},
"taxonomy_id": 1
},
{
"type": "rule",
"dimension": "industry",
"operator": "eq",
"target": {
"type": "object",
"id": "J",
"name": "Information and communication"
}
}
]
},
"breakdown": {
"dimension": "occupation",
"taxonomy_id": 2
}
}
}
Last modified: 5 months ago