Skip to main content
GET
/
v1
/
get-job
curl --location --request GET 'https://api.hirempire.com/v1/get-job?job_id={job_id}' \
--header 'Authorization: Bearer YOUR_TOKEN'
{
    "success": true,
    "job": {
        "id": "f3a2c1d4-1111-4222-9333-444455556666",
        "created_time": "2026-06-23T12:40:08.000Z",
        "job_title": "Marketing Manager",
        "company_name": "Hirempire",
        "job_type": "full-time",
        "job_mode": "remote",
        "salary": "500000",
        "currency": "USD",
        "salary_period": "Per year",
        "is_salary_hidden": false,
        "career_level": "mid-level",
        "job_location": "Cairo, Egypt",
        "status": "active",
        "applicants": 13,
        "job_description": "Job Description",
        "sources": {
            "count": 2,
            "items": [
                { "source_name": "LinkedIn" },
                { "source_name": "Referral" }
            ]
        }
    }
}

Parameters

job_id
string
required
The job ID 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-job?job_id={job_id}' \
--header 'Authorization: Bearer YOUR_TOKEN'

Response

success
boolean
Indicates if the request was successful
job
object
The job object
{
    "success": true,
    "job": {
        "id": "f3a2c1d4-1111-4222-9333-444455556666",
        "created_time": "2026-06-23T12:40:08.000Z",
        "job_title": "Marketing Manager",
        "company_name": "Hirempire",
        "job_type": "full-time",
        "job_mode": "remote",
        "salary": "500000",
        "currency": "USD",
        "salary_period": "Per year",
        "is_salary_hidden": false,
        "career_level": "mid-level",
        "job_location": "Cairo, Egypt",
        "status": "active",
        "applicants": 13,
        "job_description": "Job Description",
        "sources": {
            "count": 2,
            "items": [
                { "source_name": "LinkedIn" },
                { "source_name": "Referral" }
            ]
        }
    }
}

Error Responses

400 Bad Request

{
    "success": false,
    "error": "Only 'job_id' query parameter is allowed."
}

401 Unauthorized

{
    "success": false,
    "error": "Invalid token"
}
{
    "success": false,
    "error": "Token is expired"
}

404 Not Found

{
    "success": false,
    "error": "Job not found"
}