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" }
]
}
}
}
Jobs
Get a specific job
Retrieve a specific job by job ID from your Hirempire account
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
The job ID to retrieve
Authentication
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
Indicates if the request was successful
The job object
Show Job object properties
Show Job object properties
Unique identifier for the job
ISO 8601 timestamp when the job was created
Title of the job position.
URL slug for the public job board page.
Name of the hiring company.
URL to the hiring company’s logo.
Department the job is in (e.g. Engineering).
Industry classification.
Career level. One of:
junior mid-level senior team-leader manager director vp c-level.Employment type. One of:
full-time part-time contract freelance internship temporary project-based.Work arrangement. One of:
onsite remote hybrid.Geographic location, formatted as
"City, Country". The city portion is omitted if not set.Computed salary display string.
null when confidential.One of:
fixed range confidential.Lower bound (range mode).
Upper bound (range mode).
Fixed salary (fixed mode).
ISO 4217 three-letter code (e.g.,
USD).One of:
Per hour Per day Per week Bi-weekly Per month Per year.true if the salary is hidden on the public board.Full description of the job requirements and responsibilities.
Application form configuration.
null if no custom questions are set up.Show questions structure
Show questions structure
Built-in toggles for standard application data. Each is a boolean:
show_cover_lettershow_photoshow_experience_yearsshow_languagesshow_nationalityshow_locationshow_salary_expectation
Array of per-job custom questions. Each item:
id(string) — question UUIDlabel(string) — the question texttype(string) — one of:texttextareanumberdateurlfilesingle_selectmulti_selectvideoaudiooptions(any) — for select types, the list of choices; otherwisenullrequired(boolean) — whether the candidate must answer
Source link tracking for the job.
Show sources structure
Show sources structure
Current status. One of:
draft active paused closed.Number of applicants on this job.
{
"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"
}
Was this page helpful?
⌘I