Skip to main content
GET
/
v1
/
sourcings
List sourcings
curl --request GET \
  --url https://app.kalent.ai/api/v1/sourcings \
  --header 'x-api-key: <api-key>'

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.

First time? Set up Authentication

Learn how to authenticate your API requests with your API key.
Returns sourcings visible to the API key user. For now, each item only includes the sourcing id and display name.

Query parameters

page
integer
default:"0"
Zero-based page index.
pageSize
integer
default:"8"
Page size (max 50).
ownership
string
default:"mine"
mine or all.
status
string
default:"in-progress"
in-progress or closed.

Response

When success is true, data contains:
  • sourcings — list of sourcing references:
    • sourcingId
    • name
  • paginationpage, pageSize, total, hasNextPage
{
  "success": true,
  "data": {
    "sourcings": [
      {
        "sourcingId": "sourcing_123",
        "name": "Senior Backend Engineer"
      }
    ],
    "pagination": {
      "page": 0,
      "pageSize": 8,
      "total": 1,
      "hasNextPage": false
    }
  }
}

Errors

CodeHTTP
validation_error400
internal_error500
curl -G https://app.kalent.ai/api/v1/sourcings \
  -H "x-api-key: YOUR_API_KEY" \
  --data-urlencode "page=0" \
  --data-urlencode "pageSize=8" \
  --data-urlencode "ownership=mine" \
  --data-urlencode "status=in-progress"