GET
/
v1
/
jobs
/
{id}
/
candidates
List job candidates
curl --request GET \
  --url https://api.stardex.ai/v1/jobs/{id}/candidates \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "id": "234e5678-e90a-12b3-c456-789012345678",
      "person_id": "345e6789-e01b-23c4-d567-890123456789",
      "name": "Jane Smith",
      "current_job_title": "Software Engineer",
      "current_company_name": "Tech Corp",
      "current_company_id": "456e7890-e12b-34d5-a678-901234567890",
      "current_pipeline_stage_name": "Technical Interview",
      "current_pipeline_stage_id": "567e8901-e23c-45d6-e789-012345678901",
      "created_at": "2024-01-12T14:30:00Z"
    },
    {
      "id": "456e7890-e12b-34d5-a678-901234567890",
      "person_id": "567e8901-e23c-45d6-e789-012345678901",
      "name": "Mike Johnson",
      "current_job_title": "Full Stack Developer",
      "current_company_name": "Digital Agency",
      "current_company_id": "678e9012-e34c-56d7-e890-123456789012",
      "current_pipeline_stage_name": "Application Review",
      "current_pipeline_stage_id": "345e6789-e01b-23c4-d567-890123456789",
      "created_at": "2024-01-11T16:45:00Z"
    }
  ],
  "meta": {
    "total": 12,
    "offset": 0,
    "limit": 20
  }
}

Authorizations

Authorization
string
header
required

Enter your API key as: Bearer your_api_key_here

Path Parameters

id
string
required

Job ID

Query Parameters

offset
integer | null
default:0

Number of records to skip

Required range: x >= 0
limit
integer
default:100

Maximum number of records to return (1-100)

Required range: 1 <= x <= 100

Response

Candidates fetched

The response is of type object.