Skip to main content
The Kalent API gives you programmatic access to a talent search engine powered by real-time professional data. Build custom sourcing workflows, integrate talent discovery into your ATS, or automate candidate pipelines — all from a single endpoint.

What you can do

Base URL

All API requests are made to:
https://app.kalent.ai/api

Quick example

curl -X POST https://app.kalent.ai/api/v1/search/talents \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{
    "filters": [
      {
        "filterType": "JOB_TITLE",
        "value": "Software Engineer",
        "isRequired": true,
        "isExcluded": false,
        "isExactMatch": false
      },
      {
        "filterType": "LOCATION",
        "value": "Paris",
        "isRequired": true,
        "isExcluded": false,
        "isExactMatch": false,
        "radius": 30
      }
    ]
  }'

Rate limits

Each API key has configurable rate limits across four time windows:
WindowDefault
Per minuteVaries by plan
Per hourVaries by plan
Per dayVaries by plan
Per monthVaries by plan
When a limit is exceeded the API returns 429 Too Many Requests with a description of which window was hit.