Normalize a job title
GET /normalize/title
Raw title → canonical title + seniority, via the curated taxonomy (alias-matched, seniority prefixes extracted).
Cost: free.
Query parameters
| Name | Type | Description |
|---|---|---|
title | string | (required) |
Example request
curl "https://api.rezmatch.ai/normalize/title?title=Sr.%20Backend%20Engineer" \
-H "x-access-key: $TALENTKIT_API_KEY"Example response
{
"success": true,
"data": {
"canonical": "Backend Engineer",
"seniority": "senior"
},
"credits_used": 0,
"request_id": "req_d7f935fe-9eba-4759-908a-815622dcda0e"
}Errors
| Status | Meaning |
|---|---|
401 | invalid_key — missing, unknown, or revoked access key |
All errors share the error envelope.
Try it
Open this endpoint in the interactive playground — requests run with your API key.
Last updated on