Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.kalent.ai/llms.txt

Use this file to discover all available pages before exploring further.

Read-only MCP tool that returns candidates for one sourcing using the same filters and ordering as the Kalent candidates table.

Input

FieldTypeRequiredDescription
sourcingIdstringyesSourcing id
pageIndexnumbernoZero-based page index
pageSizenumbernoPage size (max 50)
searchstringnoFree-text search
statusHandlestring[]noStatus filters
locationstring[]noCity filters
jobTitlestring[]noJob title filters
currentCompanystring[]noCompany filters
sortFieldstringnoSort field
sortOrderasc | descnoSort order

Response

{
  "success": true,
  "data": {
    "candidates": [
      {
        "candidate": {
          "id": "candidate_123",
          "statusHandle": "TO_BE_CONTACTED",
          "createdAt": "2026-05-19T09:00:00.000Z",
          "sourcingId": "sourcing_123",
          "talentId": "talent_123"
        },
        "talent": {
          "id": "talent_123",
          "firstname": "Grace",
          "lastname": "Hopper",
          "jobTitle": "Software Engineer",
          "city": "Paris",
          "linkedinUrl": "https://www.linkedin.com/in/example"
        }
      }
    ],
    "pagination": {
      "pageIndex": 0,
      "pageSize": 25,
      "total": 1,
      "hasNextPage": false
    }
  }
}