example-data.com
Menu
Browse docs and collections

Overview

jobs / #25

Engineering Manager

USD38000.00

Reprehenderit adsuesco alo totus necessitatibus aegre vehemens cariosus trado. Statim tactus velut taedium corrigo tergeo. Vinculum tepidus clementia eaque sit creator cauda ocer strues. Cetera ipsam coma. Hic ullus caritas consequatur angelus communis angelus. Quam antepono video arca tracto.

Category
remote

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/jobs/25"
);
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/25"
);
const job = (await res.json()) as Job;

Python example

import requests

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

Response

{
  "id": 25,
  "companyId": 12,
  "title": "Engineering Manager",
  "slug": "engineering-manager-25",
  "description": "Reprehenderit adsuesco alo totus necessitatibus aegre vehemens cariosus trado. Statim tactus velut taedium corrigo tergeo. Vinculum tepidus clementia eaque sit creator cauda ocer strues.\n\nCetera ipsam coma. Hic ullus caritas consequatur angelus communis angelus. Quam antepono video arca tracto.",
  "employmentType": "full_time",
  "locationType": "remote",
  "location": "Remote",
  "salaryMin": 38000,
  "salaryMax": 89341,
  "currency": "USD",
  "isPublished": true,
  "postedAt": "2025-08-30T22:24:05.506Z",
  "expiresAt": null,
  "createdAt": "2025-08-30T05:19:58.525Z",
  "updatedAt": "2025-09-05T23:23:10.234Z"
}