Hirempire
  1. Applicants
Hirempire
  • Get started
  • Jobs
    • Get all jobs
      GET
    • Get a specific job
      GET
    • Add a job
      POST
    • Delete a job
      DELETE
    • Update job status
      PATCH
  • Applicants
    • Get all applicants
      GET
    • Get a specific applicant
      GET
    • Get a specific job’s applicants
      GET
    • Update applicant status
      PATCH
  • Companies
    • Create a Company
      POST
    • Delete a company
      DELETE
  • Organizations
    • Create an Organization
      POST
  • Users
    • Add a Collaborator
      POST
  1. Applicants

Get a specific applicant

GET
https://api.hirempire.com/v1/applicant

Request

Query Params

Header Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://api.hirempire.com/v1/applicant?applicant_id={applicant_id}' \
--header 'Authorization: Bearer YOUR_TOKEN_HERE'
Response Response Example

  {
    "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": "sarahsmith@example.com",
        "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
      }
    ]
  }
Modified at 2025-06-09 18:03:51
Previous
Get all applicants
Next
Get a specific job’s applicants
Built with