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",
"client_company_domain": "startupxyz.com",
"client_company_linkedin_url": "https://www.linkedin.com/company/startupxyz",
"job_status_name": "Active",
"job_status_id": "789e0123-e45f-67a8-b901-234567890123",
"candidate_count": 12,
"location": "San Francisco, CA",
"primary_url": "https://startupxyz.com/careers/senior-swe",
"job_function": "Engineering",
"open_date": "2024-01-01",
"end_date": null,
"currency_code": "USD",
"salary_range": "[150000,200000]",
"description": "We are looking for a Senior Software Engineer to join our platform team...",
"team_members": [
{
"team_member_id": "234e5678-e90a-12b3-c456-789012345678",
"email": "jane@company.com",
"first_name": "Jane",
"last_name": "Smith",
"role_id": "345e6789-e01b-23c4-d567-890123456789",
"role_name": "Team Lead"
},
{
"team_member_id": "345e6789-f01b-23c4-d567-890123456789",
"email": "bob@company.com",
"first_name": "Bob",
"last_name": "Johnson",
"role_id": "456e7890-f12b-34d5-e678-901234567890",
"role_name": "Executive Sponsor"
}
],
"custom_fields": [
{
"attribute_id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
"attribute_name": "Priority",
"data_type": "single-select",
"value": null,
"tag": {
"id": "d4e5f6a7-b8c9-0123-defg-234567890123",
"name": "High"
},
"team_member": null
}
],
"pipeline_stages": [
{
"id": "345e6789-e01b-23c4-d567-890123456789",
"name": "Application Review",
"stage_order": 1,
"is_rejection_stage": false,
"is_interviewing_stage": false
},
{
"id": "456e7890-f12b-34d5-e678-901234567890",
"name": "Phone Screen",
"stage_order": 2,
"is_rejection_stage": false,
"is_interviewing_stage": true
},
{
"id": "567e8901-e23c-45d6-e789-012345678901",
"name": "Technical Interview",
"stage_order": 3,
"is_rejection_stage": false,
"is_interviewing_stage": true
},
{
"id": "678e9012-f34d-56e7-f890-123456789012",
"name": "Offer",
"stage_order": 4,
"is_rejection_stage": false,
"is_interviewing_stage": false
},
{
"id": "789e0123-a45b-67c8-d901-234567890123",
"name": "Rejected",
"stage_order": 5,
"is_rejection_stage": true,
"is_interviewing_stage": false
}
]
}
}Retrieve detailed information about a specific job including pipeline stages, team members with roles, candidate count, and custom field values.
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",
"client_company_domain": "startupxyz.com",
"client_company_linkedin_url": "https://www.linkedin.com/company/startupxyz",
"job_status_name": "Active",
"job_status_id": "789e0123-e45f-67a8-b901-234567890123",
"candidate_count": 12,
"location": "San Francisco, CA",
"primary_url": "https://startupxyz.com/careers/senior-swe",
"job_function": "Engineering",
"open_date": "2024-01-01",
"end_date": null,
"currency_code": "USD",
"salary_range": "[150000,200000]",
"description": "We are looking for a Senior Software Engineer to join our platform team...",
"team_members": [
{
"team_member_id": "234e5678-e90a-12b3-c456-789012345678",
"email": "jane@company.com",
"first_name": "Jane",
"last_name": "Smith",
"role_id": "345e6789-e01b-23c4-d567-890123456789",
"role_name": "Team Lead"
},
{
"team_member_id": "345e6789-f01b-23c4-d567-890123456789",
"email": "bob@company.com",
"first_name": "Bob",
"last_name": "Johnson",
"role_id": "456e7890-f12b-34d5-e678-901234567890",
"role_name": "Executive Sponsor"
}
],
"custom_fields": [
{
"attribute_id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
"attribute_name": "Priority",
"data_type": "single-select",
"value": null,
"tag": {
"id": "d4e5f6a7-b8c9-0123-defg-234567890123",
"name": "High"
},
"team_member": null
}
],
"pipeline_stages": [
{
"id": "345e6789-e01b-23c4-d567-890123456789",
"name": "Application Review",
"stage_order": 1,
"is_rejection_stage": false,
"is_interviewing_stage": false
},
{
"id": "456e7890-f12b-34d5-e678-901234567890",
"name": "Phone Screen",
"stage_order": 2,
"is_rejection_stage": false,
"is_interviewing_stage": true
},
{
"id": "567e8901-e23c-45d6-e789-012345678901",
"name": "Technical Interview",
"stage_order": 3,
"is_rejection_stage": false,
"is_interviewing_stage": true
},
{
"id": "678e9012-f34d-56e7-f890-123456789012",
"name": "Offer",
"stage_order": 4,
"is_rejection_stage": false,
"is_interviewing_stage": false
},
{
"id": "789e0123-a45b-67c8-d901-234567890123",
"name": "Rejected",
"stage_order": 5,
"is_rejection_stage": true,
"is_interviewing_stage": false
}
]
}
}Was this page helpful?