Search occupations
GET
/api/v1.1/{country_code}/search/occupationsAllows searching a given occupation taxonomy for occupations matching a given search term q
.
Example uses for this data include searching for specific ocupations for use in further requests, or populating a typeahead / autocomplete 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
limit
integer
optional
The maximum number of matches to return in a search.
>= 1
Default:
20
q
string
required
The search query.
>= 1 characters
taxonomy_id
integer
required
The unique ID specifying which occupation taxonomy to search.
Example:
1
Request samples
Responses
Request successful.(200)
Request successful.
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
array of:
id
integer
required
The unique ID of the occupation.
>= -2147483648<= 2147483647
name
string
required
The name of the occupation.
<= 128 characters
ExampleExample Adzuna Occupation
[
{
"id": 26295,
"name": "1st Assistant Manager"
}
]
Last modified: 5 months ago