Skip to main content
GET
/
v1
/
jobs
curl --location --request GET 'https://api.hirempire.com/v1/jobs' \
--header 'Authorization: Bearer YOUR_TOKEN'
{
  "success": true,
  "total_jobs": 1,
  "jobs": [
    {
      "id": "abc123xy-1234-4567-89ab-cdef01234567",
      "created_time": "2026-06-20T10:00:00.000Z",
      "job_title": "Software Engineer",
      "public_slug": "software-engineer-a3f9",
      "company_name": "TechCorp",
      "company_logo_url": "https://cdn.hirempire.com/logos/techcorp.png",
      "department": "Engineering",
      "industry": "Software",
      "career_level": "senior",
      "job_type": "full-time",
      "job_mode": "remote",
      "job_location": "San Francisco, United States",
      "salary": "120000",
      "salary_type": "fixed",
      "salary_min": null,
      "salary_max": null,
      "salary_fixed": 120000,
      "currency": "USD",
      "salary_period": "Per year",
      "is_salary_hidden": false,
      "job_description": "We are looking for a talented Software Engineer to join our development team.",
      "questions": {
        "fields": { "show_cover_letter": true, "show_photo": false, "show_languages": true },
        "custom": [
          { "id": "q-1", "label": "Why do you want to work with us?", "type": "textarea", "required": true }
        ]
      },
      "sources": {
        "count": 2,
        "items": [
          { "id": "1a2b3c4d-...", "source_name": "LinkedIn", "source_url": "https://jobs.hirempire.com/techcorp/1a2b3c4d-...", "visits": 142, "created_at": "2026-06-18T10:00:00.000Z" },
          { "id": "9z8y7x6w-...", "source_name": "Referral", "source_url": "https://jobs.hirempire.com/techcorp/9z8y7x6w-...", "visits": 36, "created_at": "2026-06-19T08:14:00.000Z" }
        ]
      },
      "status": "active",
      "applicants": 5
    }
  ]
}

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/jobs' \
--header 'Authorization: Bearer YOUR_TOKEN'

Response

success
boolean
Indicates if the request was successful
total_jobs
integer
Total number of jobs returned
jobs
array
Array of job objects
{
  "success": true,
  "total_jobs": 1,
  "jobs": [
    {
      "id": "abc123xy-1234-4567-89ab-cdef01234567",
      "created_time": "2026-06-20T10:00:00.000Z",
      "job_title": "Software Engineer",
      "public_slug": "software-engineer-a3f9",
      "company_name": "TechCorp",
      "company_logo_url": "https://cdn.hirempire.com/logos/techcorp.png",
      "department": "Engineering",
      "industry": "Software",
      "career_level": "senior",
      "job_type": "full-time",
      "job_mode": "remote",
      "job_location": "San Francisco, United States",
      "salary": "120000",
      "salary_type": "fixed",
      "salary_min": null,
      "salary_max": null,
      "salary_fixed": 120000,
      "currency": "USD",
      "salary_period": "Per year",
      "is_salary_hidden": false,
      "job_description": "We are looking for a talented Software Engineer to join our development team.",
      "questions": {
        "fields": { "show_cover_letter": true, "show_photo": false, "show_languages": true },
        "custom": [
          { "id": "q-1", "label": "Why do you want to work with us?", "type": "textarea", "required": true }
        ]
      },
      "sources": {
        "count": 2,
        "items": [
          { "id": "1a2b3c4d-...", "source_name": "LinkedIn", "source_url": "https://jobs.hirempire.com/techcorp/1a2b3c4d-...", "visits": 142, "created_at": "2026-06-18T10:00:00.000Z" },
          { "id": "9z8y7x6w-...", "source_name": "Referral", "source_url": "https://jobs.hirempire.com/techcorp/9z8y7x6w-...", "visits": 36, "created_at": "2026-06-19T08:14:00.000Z" }
        ]
      },
      "status": "active",
      "applicants": 5
    }
  ]
}

Error Responses

400 Bad Request

{
    "success": false,
    "error": "Query parameters are not allowed."
}

401 Unauthorized

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