Skip to main content
GET
/
api
/
jobs
/
{id}
Get a single job by id
curl --request GET \
  --url https://connect.jobo.world/api/jobs/{id} \
  --header 'X-Api-Key: <api-key>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "title": "<string>",
  "normalized_title": "<string>",
  "company": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "website": "<string>",
    "logo_url": "<string>",
    "summary": "<string>",
    "industries": [
      "<string>"
    ],
    "categories": [
      "<string>"
    ],
    "linkedin_url": "<string>",
    "crunchbase_url": "<string>",
    "details_url": "<string>"
  },
  "description": "<string>",
  "summary": "<string>",
  "listing_url": "<string>",
  "apply_url": "<string>",
  "locations": [
    {
      "location": "<string>",
      "city": "<string>",
      "region": "<string>",
      "country": "<string>",
      "latitude": 123,
      "longitude": 123
    }
  ],
  "compensation": {
    "min": 123,
    "max": 123,
    "currency": "<string>"
  },
  "source": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "date_posted": "2023-11-07T05:31:56Z",
  "valid_through": "2023-11-07T05:31:56Z",
  "qualifications": {
    "must_have": {
      "education": [
        "<string>"
      ],
      "certifications": [
        "<string>"
      ],
      "skills": [
        {
          "name": "<string>",
          "type": "hard"
        }
      ]
    },
    "preferred": {
      "education": [
        "<string>"
      ],
      "certifications": [
        "<string>"
      ],
      "skills": [
        {
          "name": "<string>",
          "type": "hard"
        }
      ]
    }
  },
  "responsibilities": [
    "<string>"
  ],
  "benefits": [
    "<string>"
  ],
  "is_work_auth_required": true,
  "is_h1b_sponsor": true,
  "is_clearance_required": true
}

Authorizations

X-Api-Key
string
header
required

API key provided by Jobo

Path Parameters

id
string<uuid>
required

Stable Jobo job identifier — the id field returned on every job by the search and feed endpoints.

Response

The requested job posting

id
string<uuid>
title
string
normalized_title
string | null
company
object
description
string
summary
string | null
listing_url
string
apply_url
string
locations
object[]
compensation
object
employment_type
enum<string> | null
Available options:
Full-time,
Part-time,
Contract,
Internship,
Freelance,
Temporary,
null
workplace_type
enum<string> | null
Available options:
Remote,
Hybrid,
On-site,
null
experience_level
enum<string> | null
Available options:
Intern,
Entry Level,
Mid Level,
Senior,
Lead,
Executive,
null
source
string
created_at
string<date-time>
updated_at
string<date-time>
date_posted
string<date-time> | null
valid_through
string<date-time> | null
qualifications
object
responsibilities
string[]
benefits
string[]
is_work_auth_required
boolean | null
is_h1b_sponsor
boolean | null
is_clearance_required
boolean | null