Get posting duration data
GET
/api/v1.1/{country_code}/reports/posting-duration/For the given criteria and time period, returns information about how long (in days) postings matching the criteria remained live on the Adzuna website.
In addition to the median (50th percentile) figure, we also return 25th and 75th percentile figures, together with a minimum and maximum figure.
To reduce the effect of statistical outliers, for minimum and maximum values, we consider the 5th and 99th percentiles (respectively), and additionally do not consider postings that were seen for less than 14 days.
:::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.
:::
Request
A two character code that specifies which country dataset to query.
A unique ID specifying an occupation sector/category.
A unique ID specifying a company/employer.
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.
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.
The start date of the desired time period for the query. Must be specified in ISO8601 format (YYYY-MM-DD).
Request samples
Responses
The minimum (5th percentile) number of days that matching postings were live.
The 25th percentile number of days that matching postings were live.
The median (50th percentile) number of days that matching postings were live.
The 75th percentile number of days that matching postings were live.
The maximum (95th percentile) number of days that matching postings were live.
{
"ttf_min": 21,
"ttf_percentile_25": 24,
"ttf_percentile_50": 27,
"ttf_percentile_75": 35,
"ttf_max": 169
}