Skip to main content
GET
https://api.hirempire.com
/
v1
/
applicants
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
    }
  ]
}

Authentication

Authorization
string
required
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --location --request GET 'https://api.hirempire.com/v1/applicants' \
--header 'Authorization: Bearer YOUR_TOKEN'

Response

success
boolean
Indicates if the request was successful
total_applicants
integer
Total number of applicants returned
applicants
array
Array of applicant objects
{
  "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
    }
  ]
}