example-data.com
Menu
Browse docs and collections

Overview

jobs / #105

Engineering Manager

USD89000.00

Solium aequus deprimo vilis. Adhaero aliquid adamo assentator repellat cena adeo peccatus via. Carmen rerum abstergo patruus adficio. Ambulo ustulo depopulo tutamen. Tubineus curatio caveo adstringo tactus demonstro demens cupressus laboriosam. Congregatio virga creber tergum optio amoveo terebro thorax chirographum cribro.

Category
hybrid

Component variants

Related

Referenced by

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/jobs/105" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/jobs/105"
);
const job = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/jobs.d.ts https://example-data.com/types/jobs.d.ts
import type { Job } from "./types/jobs";

const res = await fetch(
  "https://example-data.com/api/v1/jobs/105"
);
const job = (await res.json()) as Job;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/jobs/105"
)
job = res.json()

Response

{
  "id": 105,
  "companyId": 37,
  "title": "Engineering Manager",
  "slug": "engineering-manager-105",
  "description": "Solium aequus deprimo vilis. Adhaero aliquid adamo assentator repellat cena adeo peccatus via. Carmen rerum abstergo patruus adficio.\n\nAmbulo ustulo depopulo tutamen. Tubineus curatio caveo adstringo tactus demonstro demens cupressus laboriosam. Congregatio virga creber tergum optio amoveo terebro thorax chirographum cribro.",
  "employmentType": "part_time",
  "locationType": "hybrid",
  "location": "West Peyton, Montserrat",
  "salaryMin": 89000,
  "salaryMax": 132737,
  "currency": "USD",
  "isPublished": true,
  "postedAt": "2024-11-24T19:29:04.083Z",
  "expiresAt": "2025-02-22T19:29:04.083Z",
  "createdAt": "2024-11-24T11:53:47.291Z",
  "updatedAt": "2024-11-30T11:25:25.929Z"
}