Endpoint
List the skill catalog
Retrieve the currently loaded skill reference catalog.
Request
application/jsonNo body parameters.
Errors
401Missing or invalid API key. The public façade returns { error: "Missing API Key" } or { error: "Invalid API Key" }; direct HireLayer returns { success: false, error: "Unauthorized. Valid API key required." } when API_KEY is configured.
400The request body is missing or invalid.
404The requested endpoint does not exist.
502Bedrock failed or returned an invalid response.
500Unexpected server-side failure.
Example request
curl https://onlineresumeparser.com/api/v1/skills \
-H "X-API-Key: YOUR_API_KEY"Response
Each catalog item includes the normalized skill label, its domain, subcategory, and rank. total_skills is the number of catalog entries loaded at startup and may be limited by TOP_N_SKILLS (0 loads the full catalog).
{
"total_skills": 664,
"skills": [
{
"skill": "TypeScript",
"domain": "Engineering",
"subcategory": "Web",
"rank": 1
},
{
"skill": "Python",
"domain": "Engineering",
"subcategory": "Programming languages",
"rank": 2
},
{
"skill": "React",
"domain": "Engineering",
"subcategory": "Frontend",
"rank": 3
},
{
"skill": "Project management",
"domain": "Management",
"subcategory": "Delivery",
"rank": 4
}
]
}