Applications
Get applications
Getting Started
Endpoints
- Applications
- Candidates
- Jobs
- Feedback
- Interviews
- Users
- Files
- Settings
- Webhooks
Webhooks
Applications
Get applications
Get a paginated list of applications
GET
/
v1.0
/
{company_id}
/
applications
curl --request GET \
--url https://api.hirehive.com/v1.0/{company_id}/applications \
--header 'Authorization: Bearer <token>'
{
"meta": {
"page_size": 123,
"page": 123,
"total_items": 123,
"total_pages": 123,
"has_next_page": true,
"has_previous_page": true
},
"links": {
"first": "<string>",
"last": "<string>",
"next": "<string>",
"previous": "<string>"
},
"items": [
{
"id": "<string>",
"candidate": {
"id": "<string>",
"full_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"phone_number": "<string>",
"title": "<string>",
"company": "<string>",
"location": {
"address": "<string>",
"country": {
"name": "<string>",
"code": "<string>"
}
},
"image_url": "<string>",
"tags": [
{
"id": "<string>",
"name": "<string>"
}
],
"rating": 123,
"application_ids": [
"<string>"
],
"social_profiles": [
{
"type": "linked_in",
"uri": "<string>"
}
]
},
"applied_at": "2023-11-07T05:31:56Z",
"job": {
"id": "<string>",
"title": "<string>"
},
"cover_letter": "<string>",
"stage": {
"parent_stage": "rejected",
"custom_stage": {
"id": "<string>",
"name": "<string>"
}
},
"resume": {
"id": "<string>",
"original": {
"name": "<string>",
"original_name": "<string>",
"content_type": "<string>",
"file_extension": "<string>"
},
"pdf": {
"name": "<string>",
"original_name": "<string>",
"content_type": "<string>",
"file_extension": "<string>"
}
},
"source": {
"origin": "added",
"source": "<string>",
"contact": {
"id": "<string>",
"name": "<string>"
},
"user": {
"id": "<string>",
"name": "<string>"
},
"recruiter": {
"id": "<string>",
"name": "<string>"
}
},
"interviews": [
"<string>"
],
"feedback": [
"<string>"
],
"potential_duplicate": true,
"compliance": {
"gdpr": {
"consent_expires_at": "2023-11-07T05:31:56Z",
"consent_requests": [
{
"status": "pending",
"sent_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z"
}
]
}
}
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Query Parameters
Sortable fields: applied_at
.
Filter applications by candidate id
Filter applications by job id
Filter applications by parent stage
Available options:
rejected
, new
, screening
, interviewing
, offered
, hired
Filter applications by custom pipeline id
Defaults to 1
Defaults to 30. Min = 1. Max = 100
Required range:
1 <= x <= 100
Response
200
application/json
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.hirehive.com/v1.0/{company_id}/applications \
--header 'Authorization: Bearer <token>'
{
"meta": {
"page_size": 123,
"page": 123,
"total_items": 123,
"total_pages": 123,
"has_next_page": true,
"has_previous_page": true
},
"links": {
"first": "<string>",
"last": "<string>",
"next": "<string>",
"previous": "<string>"
},
"items": [
{
"id": "<string>",
"candidate": {
"id": "<string>",
"full_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"phone_number": "<string>",
"title": "<string>",
"company": "<string>",
"location": {
"address": "<string>",
"country": {
"name": "<string>",
"code": "<string>"
}
},
"image_url": "<string>",
"tags": [
{
"id": "<string>",
"name": "<string>"
}
],
"rating": 123,
"application_ids": [
"<string>"
],
"social_profiles": [
{
"type": "linked_in",
"uri": "<string>"
}
]
},
"applied_at": "2023-11-07T05:31:56Z",
"job": {
"id": "<string>",
"title": "<string>"
},
"cover_letter": "<string>",
"stage": {
"parent_stage": "rejected",
"custom_stage": {
"id": "<string>",
"name": "<string>"
}
},
"resume": {
"id": "<string>",
"original": {
"name": "<string>",
"original_name": "<string>",
"content_type": "<string>",
"file_extension": "<string>"
},
"pdf": {
"name": "<string>",
"original_name": "<string>",
"content_type": "<string>",
"file_extension": "<string>"
}
},
"source": {
"origin": "added",
"source": "<string>",
"contact": {
"id": "<string>",
"name": "<string>"
},
"user": {
"id": "<string>",
"name": "<string>"
},
"recruiter": {
"id": "<string>",
"name": "<string>"
}
},
"interviews": [
"<string>"
],
"feedback": [
"<string>"
],
"potential_duplicate": true,
"compliance": {
"gdpr": {
"consent_expires_at": "2023-11-07T05:31:56Z",
"consent_requests": [
{
"status": "pending",
"sent_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z"
}
]
}
}
}
]
}