curl --location --request GET 'https://api.hirempire.com/v1/applicants' \
--header 'Authorization: Bearer YOUR_TOKEN'
{
"success": true,
"total_applicants": 2,
"applicants": [
{
"id": "abc123xyz456",
"applied_at": "2025-02-18T12:30:00.000Z",
"name": "John Doe",
"job_title": "Software Engineer",
"company_name": "TechCorp",
"first_name": "John",
"email": "[email protected]",
"phone_number": "+15551234567",
"linkedin_url": "https://www.linkedin.com/in/username",
"source": "Indeed",
"cv_url": "https://example.com/cv/johndoe.pdf",
"status": "Applied",
"score": 6
},
{
"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": "Accepted",
"score": 8
}
]
}
Retrieve all applicants from your Hirempire account
curl --location --request GET 'https://api.hirempire.com/v1/applicants' \
--header 'Authorization: Bearer YOUR_TOKEN'
{
"success": true,
"total_applicants": 2,
"applicants": [
{
"id": "abc123xyz456",
"applied_at": "2025-02-18T12:30:00.000Z",
"name": "John Doe",
"job_title": "Software Engineer",
"company_name": "TechCorp",
"first_name": "John",
"email": "[email protected]",
"phone_number": "+15551234567",
"linkedin_url": "https://www.linkedin.com/in/username",
"source": "Indeed",
"cv_url": "https://example.com/cv/johndoe.pdf",
"status": "Applied",
"score": 6
},
{
"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": "Accepted",
"score": 8
}
]
}
Bearer <token>, where <token> is your auth token.curl --location --request GET 'https://api.hirempire.com/v1/applicants' \
--header 'Authorization: Bearer YOUR_TOKEN'
Show Applicant Object Properties
{
"success": true,
"total_applicants": 2,
"applicants": [
{
"id": "abc123xyz456",
"applied_at": "2025-02-18T12:30:00.000Z",
"name": "John Doe",
"job_title": "Software Engineer",
"company_name": "TechCorp",
"first_name": "John",
"email": "[email protected]",
"phone_number": "+15551234567",
"linkedin_url": "https://www.linkedin.com/in/username",
"source": "Indeed",
"cv_url": "https://example.com/cv/johndoe.pdf",
"status": "Applied",
"score": 6
},
{
"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": "Accepted",
"score": 8
}
]
}
Was this page helpful?