Skip to main content
GET
/
ai-apply
/
applications
Get applications
curl --request GET \
  --url https://api.kombo.dev/v1/ai-apply/applications \
  --header 'Authorization: Bearer <token>'
{
"status": "success",
"data": {
"results": [
{
"id": "ADbmw5XSkeCSE1fAucoxEGnwZ",
"job_posting_id": "JDn252PEYa4rMhKbJBjtn3ng",
"status": "PENDING",
"created_at": "2025-01-01T00:00:00.000Z",
"updated_at": "2025-03-02T23:12:32.000Z"
}
],
"next": null
}
}

Authorizations

Authorization
string
header
required

Create an API key on the Secrets page in the Kombo dashboard.

Query Parameters

cursor
string

An optional cursor string used for pagination. This can be retrieved from the next property of the previous page response.

page_size
integer
default:100

The number of results to return per page. Maximum is 250.

Required range: 1 <= x <= 250
ids
string

Filter by a comma-separated list of IDs such as 222k7eCGyUdgt2JWZDNnkDs3,B5DVmypWENfU6eMe6gYDyJG3.

job_posting_ids
string

Filter by a comma-separated list of job posting IDs such as 89V6GEKpdZwqbxQz59n1ftFb,kcGHREEXCMF26Yhpuyh1gDVE.

Response

GET /ai-apply/applications Positive response

status
string
required
Allowed value: "success"
data
object
required
Examples:
{
"results": [
{
"id": "ADbmw5XSkeCSE1fAucoxEGnwZ",
"job_posting_id": "JDn252PEYa4rMhKbJBjtn3ng",
"status": "PENDING",
"created_at": "2025-01-01T00:00:00.000Z",
"updated_at": "2025-03-02T23:12:32.000Z"
}
],
"next": null
}