Dashboard
Get fast-track eligibility ratio for a keyword (open API)
Open endpoint — no authentication required. Accepts a keyword matched against utmTerm. Returns ratio = (express delivery orders for keyword / total orders for keyword) * 100 over the rolling window defined by FAST_TRACK_RATIO_WINDOW env var (e.g. "1d", "30d"). eligibleForFastTrack = true when ratio is within [FAST_TRACK_MIN_RATIO, FAST_TRACK_MAX_RATIO] (both inclusive).
get/dashboard/keyword-ratio
Query parameters
keywordstring required
Example:land registry search
Keyword to look up — matched against utmTerm field.
Response
Keyword ratio and fast-track eligibility returned successfully
Example response
{
"keyword": "google",
"ratio": 40,
"eligibleForFastTrack": true,
"maxRatio": 30,
"window": "1d"
}Changes
No recorded changes to this endpoint across all 1 revision of this API.