Hirempire
  1. Jobs
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. Jobs

Get all jobs

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

Request

Header Params

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.hirempire.com/v1/jobs' \
--header 'Authorization: Bearer YOUR_TOKEN_HERE'
Response Response Example
{
    "success": true,
    "total_jobs": 2,
    "jobs": [
        {
            "id": "abc123xyz789",
            "created_time": "2025-02-20T10:00:00.000Z",
            "job_title": "Software Engineer",
            "job_type": "Full-time",
            "job_mode": "Remote",
            "job_location": "USA",
            "company_name": "TechCorp",
            "job_description": "We are looking for a talented Software Engineer to join our development team. Responsibilities include designing, developing, and maintaining software applications, collaborating with cross-functional teams, and ensuring high-quality code through testing and code reviews.",
            "status": "Active",
            "applicants": 5
        },
        {
            "id": "xyz456abc123",
            "created_time": "2025-02-18T15:30:00.000Z",
            "job_title": "Marketing Manager",
            "job_type": "Part-time",
            "job_mode": "Hybrid",
            "job_location": "UK",
            "company_name": "MarketGenius",
            "job_description": "The Marketing Manager will be responsible for developing and executing marketing campaigns, analyzing market trends, and working with internal teams to enhance brand visibility. The ideal candidate should have strong communication skills and experience in digital marketing strategies.",
            "status": "Paused",
            "applicants": 3
        }
    ]
}
Modified at 2025-06-09 18:02:47
Previous
Get started
Next
Get a specific job
Built with