Get time to fill data
DeprecatedGET
/api/v1.1/{country_code}/reports/time-to-fill/:::warning
This endpoint is deprecated. Please see Get posting duration data
:::
For the given criteria and time period, returns time to fill data (in days).
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) time to fill (days) for matching postings.
The 25th percentile time to fill (days) for matching postings.
The median (5th percentile) time to fill (days) for matching postings.
The 75th percentile time to fill (days) for matching postings.
The maximum (99th percentile) time to fill (days) for matching postings.
{
"ttf_min": 21,
"ttf_percentile_25": 24,
"ttf_percentile_50": 27,
"ttf_percentile_75": 35,
"ttf_max": 169
}