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 all applicants

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

Request

Header Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.hirempire.com/v1/applicants' \
--header 'Authorization: Bearer YOUR_TOKEN_HERE'
Response Response Example
{
  "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": "johndoe@example.com",
      "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": "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": "Accepted",
      "score": 8
    }
  ]
}
Modified at 2025-06-09 18:03:45
Previous
Update job status
Next
Get a specific applicant
Built with