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": [
{
"stage": {
"parent_stage": "rejected",
"custom_stage": {
"id": "<string>",
"name": "<string>"
}
},
"compliance": {
"gdpr": {
"consent_requests": [
{
"status": "pending",
"sent_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z"
}
],
"consent_expires_at": "2023-11-07T05:31:56Z"
}
},
"id": "<string>",
"candidate": {
"first_name": "<string>",
"last_name": "<string>",
"tags": [
{
"id": "<string>",
"name": "<string>"
}
],
"id": "<string>",
"full_name": "<string>",
"email": "<string>",
"phone_number": "<string>",
"title": "<string>",
"company": "<string>",
"location": {
"address": "<string>",
"country": {
"name": "<string>",
"code": "<string>"
}
},
"image_url": "<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>",
"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
}
]
}Get a paginated list of 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": [
{
"stage": {
"parent_stage": "rejected",
"custom_stage": {
"id": "<string>",
"name": "<string>"
}
},
"compliance": {
"gdpr": {
"consent_requests": [
{
"status": "pending",
"sent_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z"
}
],
"consent_expires_at": "2023-11-07T05:31:56Z"
}
},
"id": "<string>",
"candidate": {
"first_name": "<string>",
"last_name": "<string>",
"tags": [
{
"id": "<string>",
"name": "<string>"
}
],
"id": "<string>",
"full_name": "<string>",
"email": "<string>",
"phone_number": "<string>",
"title": "<string>",
"company": "<string>",
"location": {
"address": "<string>",
"country": {
"name": "<string>",
"code": "<string>"
}
},
"image_url": "<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>",
"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
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Sortable fields: applied_at.
Filter applications by candidate id
Filter applications by job id
Filter applications by parent stage
rejected, new, screening, interviewing, offered, hired Filter applications by custom pipeline id
Defaults to 1
Defaults to 30. Min = 1. Max = 100
1 <= x <= 100Show child attributes
The current status of the application.
Show child attributes
The parent stage of the application. eg Screening, Interviewing
rejected, new, screening, interviewing, offered, hired Show child attributes
Show child attributes
A list of any GDPR consent extensions requests.
Show child attributes
The status of the consent request
pending, complete The date the request was sent at
The date the request expires at
The id of the application, format app_abc123.
The candidate object.
Show child attributes
The first name of the candidate.
1The last name of the candidate.
1The id of the candidate, format can_abc123.
The full name of the candidate.
The email address of the candidate.
The phone number of the candidate.
The current job title of the candidate.
The current company of the candidate.
Show child attributes
The city/street address of the candidate.
An image url to a profile picture
A 1-5 star rating assigned to the candidate.
A list of other application ids this candidate may have. Format app_abc123.
The date and time of the application in UTC.
The cover letter for this application
Show child attributes
Show child attributes
The origin of the application. eg Applied, Added, Submitted by an agency
added, applied, interested, referred, candidate_pool, hire_hive_import, agency_submission The source name. eg Google, LinkedIn
List of interview ids for this application
List of feedback forms ids for this application
Was this page helpful?