Skip to Content

Jobs

Jobs are the entry point: list them to find the opening you want, then read one job for its stages (needed to move candidates) and ATS criteria (what candidates are scored against).

List jobs

GET /api/v1/jobs
Query paramTypeNotes
statusstringOptional filter, e.g. active, draft, closed
offsetnumberDefault 0
limitnumberDefault 20, max 100
curl "https://api.reordinal.com/api/v1/jobs?status=active" \ -H "X-API-Key: $REORDINAL_API_KEY"
{ "status": "success", "data": { "items": [ { "id": "job_xyz", "title": "Senior Backend Engineer", "status": "active", "teamId": "team_abc", "teamName": "Engineering", "applicationCount": 128, "createdAt": "2026-05-01T10:00:00.000Z" } ], "pagination": { "offset": 0, "limit": 20, "total": 1 } } }

Scoped keys only see jobs inside their claims.

For team/job-scoped keys, claim filtering is applied to the first 100 org jobs before pagination — fine for keys scoped to a handful of teams/jobs.

Get a job

GET /api/v1/jobs/:jobId

Returns the full job object directly under data — title, status, description, form fields, stages (each with a stage_… public ID), and criteria (the ATS must-haves/nice-to-haves and weighting).

curl https://api.reordinal.com/api/v1/jobs/job_xyz \ -H "X-API-Key: $REORDINAL_API_KEY"

Use the stage IDs from here when moving a candidate, and the criteria to interpret ATS breakdowns.

Errors

StatusCodeWhen
404V1_RESOURCE_NOT_FOUNDJob doesn’t exist, or is outside the key’s workspace/claims