List workspace jobs
curl --request GET \
--url https://cutshort.io/api/v1/jobs \
--header 'Authorization: Bearer <token>'import requests
url = "https://cutshort.io/api/v1/jobs"
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', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"page": 123,
"pageSize": 123,
"totalCount": 123,
"results": [
{
"jobId": "<string>",
"title": "<string>",
"status": "<string>",
"createdAt": "2023-11-07T05:31:56Z"
}
]
}{
"error_code": "<string>",
"error_description": "<string>"
}{
"error_code": "<string>",
"error_description": "<string>"
}Jobs
List workspace jobs
Lists your workspace’s jobs. Requires scope jobs:read (eval + production keys).
GET
/
jobs
List workspace jobs
curl --request GET \
--url https://cutshort.io/api/v1/jobs \
--header 'Authorization: Bearer <token>'import requests
url = "https://cutshort.io/api/v1/jobs"
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', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"page": 123,
"pageSize": 123,
"totalCount": 123,
"results": [
{
"jobId": "<string>",
"title": "<string>",
"status": "<string>",
"createdAt": "2023-11-07T05:31:56Z"
}
]
}{
"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.
Query Parameters
Default false: active jobs only. Set true to also include paused jobs.
Required range:
x >= 1Results per page (default 10, max 20)
Required range:
1 <= x <= 20