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

Query Parameters

applicant_id
string
required
The unique identifier of the applicant to retrieve

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/get-applicant?applicant_id={applicant_id}' \
--header 'Authorization: Bearer YOUR_TOKEN'

Response

applicant
array
Array containing the specific applicant object
{
  "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
    }
  ]
}