List stages for a job (with application counts)
curl --request GET \
--url https://cutshort.io/api/v1/jobs/{jobId}/stages \
--header 'Authorization: Bearer <token>'import requests
url = "https://cutshort.io/api/v1/jobs/{jobId}/stages"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://cutshort.io/api/v1/jobs/{jobId}/stages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"results": [
{
"stageId": "<string>",
"title": "<string>",
"type": "<string>",
"order": 123,
"stagePurpose": "<string>",
"applicationCount": 123,
"automations": [
{}
]
}
]
}{
"error_code": "<string>",
"error_description": "<string>"
}{
"error_code": "<string>",
"error_description": "<string>"
}{
"error_code": "<string>",
"error_description": "<string>"
}Stages
List stages for a job (with application counts)
Returns the job pipeline stages with applicationCount per stage. Use stageId with GET /jobs//applications to list a specific stage. Requires scope jobs:read (eval + production keys).
GET
/
jobs
/
{jobId}
/
stages
List stages for a job (with application counts)
curl --request GET \
--url https://cutshort.io/api/v1/jobs/{jobId}/stages \
--header 'Authorization: Bearer <token>'import requests
url = "https://cutshort.io/api/v1/jobs/{jobId}/stages"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://cutshort.io/api/v1/jobs/{jobId}/stages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"results": [
{
"stageId": "<string>",
"title": "<string>",
"type": "<string>",
"order": 123,
"stagePurpose": "<string>",
"applicationCount": 123,
"automations": [
{}
]
}
]
}{
"error_code": "<string>",
"error_description": "<string>"
}{
"error_code": "<string>",
"error_description": "<string>"
}{
"error_code": "<string>",
"error_description": "<string>"
}Authorizations
Workspace-scoped API key. Prefix: cs_live_. Eval keys (self-serve from Cutshort → Settings → Integrations → API Key) can search and get candidate details within small quotas; production keys add job posting and candidate messaging with higher limits.
Path Parameters
Response
Stage list
Show child attributes
Show child attributes
