curl --location --request GET 'https://api.hirempire.com/v1/get-applicant?applicant_id={applicant_id}' \
--header 'Authorization: Bearer YOUR_TOKEN'
{
"applicant": [
{
"id": "xyz789abc321",
"applied_at": "2025-02-17T09:15:00.000Z",
"name": "Sarah Smith",
"job_title": "Marketing Manager",
"company_name": "MarketGenius",
"first_name": "Sarah",
"email": "[email protected]",
"phone_number": "+447987654321",
"linkedin_url": "https://www.linkedin.com/in/username",
"source": "Company Website",
"cv_url": "https://example.com/cv/sarahsmith.pdf",
"status": "Applied",
"score": 8
}
]
}
Retrieve a specific applicant by applicant ID from your Hirempire account
curl --location --request GET 'https://api.hirempire.com/v1/get-applicant?applicant_id={applicant_id}' \
--header 'Authorization: Bearer YOUR_TOKEN'
{
"applicant": [
{
"id": "xyz789abc321",
"applied_at": "2025-02-17T09:15:00.000Z",
"name": "Sarah Smith",
"job_title": "Marketing Manager",
"company_name": "MarketGenius",
"first_name": "Sarah",
"email": "[email protected]",
"phone_number": "+447987654321",
"linkedin_url": "https://www.linkedin.com/in/username",
"source": "Company Website",
"cv_url": "https://example.com/cv/sarahsmith.pdf",
"status": "Applied",
"score": 8
}
]
}
Bearer <token>, where <token> is your auth token.curl --location --request GET 'https://api.hirempire.com/v1/get-applicant?applicant_id={applicant_id}' \
--header 'Authorization: Bearer YOUR_TOKEN'
Show Applicant Object Properties
{
"applicant": [
{
"id": "xyz789abc321",
"applied_at": "2025-02-17T09:15:00.000Z",
"name": "Sarah Smith",
"job_title": "Marketing Manager",
"company_name": "MarketGenius",
"first_name": "Sarah",
"email": "[email protected]",
"phone_number": "+447987654321",
"linkedin_url": "https://www.linkedin.com/in/username",
"source": "Company Website",
"cv_url": "https://example.com/cv/sarahsmith.pdf",
"status": "Applied",
"score": 8
}
]
}
Was this page helpful?