Authorizations
Enter your API key as: Bearer your_api_key_here
Path Parameters
Job ID
Response
Job fetched
The response is of type object
.
curl --request GET \
--url https://api.stardex.ai/v1/jobs/{id} \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "Senior Software Engineer",
"created_at": "2024-01-10T09:00:00Z",
"is_archived": false,
"client_company_name": "StartupXYZ",
"client_company_id": "456e7890-e12b-34d5-a678-901234567890",
"job_status_name": "Active",
"job_status_id": "789e0123-e45f-67g8-h901-234567890123",
"candidate_count": 12,
"pipeline_stages": [
{
"id": "345e6789-e01b-23c4-d567-890123456789",
"name": "Application Review",
"stage_order": 1,
"is_rejection_stage": false,
"is_interviewing_stage": false
},
{
"id": "567e8901-e23c-45d6-e789-012345678901",
"name": "Technical Interview",
"stage_order": 2,
"is_rejection_stage": false,
"is_interviewing_stage": true
},
{
"id": "789e0123-e45f-67g8-h901-234567890123",
"name": "Final Interview",
"stage_order": 3,
"is_rejection_stage": false,
"is_interviewing_stage": true
},
{
"id": "901e2345-e67f-89g0-h123-456789012345",
"name": "Offer",
"stage_order": 4,
"is_rejection_stage": false,
"is_interviewing_stage": false
}
]
}
}
Retrieve detailed information about a specific job including pipeline stages and candidate count
curl --request GET \
--url https://api.stardex.ai/v1/jobs/{id} \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "Senior Software Engineer",
"created_at": "2024-01-10T09:00:00Z",
"is_archived": false,
"client_company_name": "StartupXYZ",
"client_company_id": "456e7890-e12b-34d5-a678-901234567890",
"job_status_name": "Active",
"job_status_id": "789e0123-e45f-67g8-h901-234567890123",
"candidate_count": 12,
"pipeline_stages": [
{
"id": "345e6789-e01b-23c4-d567-890123456789",
"name": "Application Review",
"stage_order": 1,
"is_rejection_stage": false,
"is_interviewing_stage": false
},
{
"id": "567e8901-e23c-45d6-e789-012345678901",
"name": "Technical Interview",
"stage_order": 2,
"is_rejection_stage": false,
"is_interviewing_stage": true
},
{
"id": "789e0123-e45f-67g8-h901-234567890123",
"name": "Final Interview",
"stage_order": 3,
"is_rejection_stage": false,
"is_interviewing_stage": true
},
{
"id": "901e2345-e67f-89g0-h123-456789012345",
"name": "Offer",
"stage_order": 4,
"is_rejection_stage": false,
"is_interviewing_stage": false
}
]
}
}
Enter your API key as: Bearer your_api_key_here
Job ID
Job fetched
The response is of type object
.
Was this page helpful?