Skip to main content
GET
/
jobs
/
{jobId}
Get job details
curl --request GET \
  --url https://hireloam.com/api/v1/jobs/{jobId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "title": "<string>",
  "status": "published",
  "department": "<string>",
  "location": "<string>",
  "employment_type": "<string>",
  "public_slug": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "stages": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "order_index": 123,
      "application_count": 123
    }
  ],
  "description_md": "<string>",
  "show_salary": true,
  "salary_currency": "<string>",
  "salary_timeframe": "<string>",
  "salary_min": 123,
  "salary_max": 123
}

Authorizations

Authorization
string
header
required

API key from Settings > API Keys

Path Parameters

jobId
string<uuid>
required

The job ID

Response

Job details

id
string<uuid>
title
string
status
enum<string>
Available options:
published,
draft,
closed
department
string | null
location
string | null
employment_type
string | null
public_slug
string | null
created_at
string<date-time>
stages
object[]
description_md
string | null
show_salary
boolean
salary_currency
string | null
salary_timeframe
string | null
salary_min
number | null
salary_max
number | null