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>'
import requests

url = "https://connect.jobo.world/api/jobs/{id}"

headers = {"X-Api-Key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};

fetch('https://connect.jobo.world/api/jobs/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://connect.jobo.world/api/jobs/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://connect.jobo.world/api/jobs/{id}"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("X-Api-Key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://connect.jobo.world/api/jobs/{id}")
.header("X-Api-Key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://connect.jobo.world/api/jobs/{id}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "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": "greenhouse",
  "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
}
{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}
{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}
{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}
{
"type": "<string>",
"title": "<string>",
"status": 123,
"detail": "<string>",
"instance": "<string>"
}

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>
required
title
string
required
normalized_title
string | null
required
company
object
required
description
string
required
summary
string | null
required
listing_url
string
required
apply_url
string
required
locations
object[]
required
compensation
object | null
required

Compensation as published by the employer. USD annualization is used for salary filters but is not returned in this object.

employment_type
enum<string> | null
required
Available options:
Full-time,
Part-time,
Contract,
Internship,
Freelance,
Temporary
workplace_type
enum<string> | null
required
Available options:
Remote,
Hybrid,
On-site
experience_level
enum<string> | null
required
Available options:
Intern,
Entry Level,
Mid Level,
Senior,
Lead,
Executive
source
string
required

ATS provider identifier. This remains an open string so newly supported providers do not break generated clients.

Example:

"greenhouse"

created_at
string<date-time>
required
updated_at
string<date-time>
required
date_posted
string<date-time> | null
required
valid_through
string<date-time> | null
required
qualifications
object
required
responsibilities
string[]
required
benefits
string[]
required
is_work_auth_required
boolean | null
required
is_h1b_sponsor
boolean | null
required
is_clearance_required
boolean | null
required