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 a specific job

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

Request

Query Params

Header Params

Body Params application/x-www-form-urlencoded

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://api.hirempire.com/v1/jobs?job_id={job_id}' \
--header 'Authorization: Bearer YOUR_TOKEN_HERE'
Response Response Example
[
    {
        "success": true,
        "job": [
            {
                "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:03:17
Previous
Get all jobs
Next
Add a job
Built with