example-data.com

jobs / #123

Data Scientist

USD175000.00

Compello aqua cupiditas amita eos ea. Ait cena cerno. Attollo centum barba tredecim eveniet arx absorbeo tempora. Triduana aveho adiuvo terebro subito sto. Admoveo eveniet ventosus. Vesica autem basium desidero crebro conduco abundans.

Category
onsite

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/jobs/123" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/jobs/123"
);
const job = await res.json();
import type { Job } from "https://example-data.com/types/jobs.d.ts";

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

res = requests.get(
    "https://example-data.com/api/v1/jobs/123"
)
job = res.json()
{
  "id": 123,
  "companyId": 42,
  "title": "Data Scientist",
  "slug": "data-scientist-123",
  "description": "Compello aqua cupiditas amita eos ea. Ait cena cerno. Attollo centum barba tredecim eveniet arx absorbeo tempora.\n\nTriduana aveho adiuvo terebro subito sto. Admoveo eveniet ventosus. Vesica autem basium desidero crebro conduco abundans.",
  "employmentType": "part_time",
  "locationType": "onsite",
  "location": "Lake Tedboro, Bangladesh",
  "salaryMin": 175000,
  "salaryMax": 233842,
  "currency": "USD",
  "isPublished": false,
  "postedAt": "2025-07-21T00:18:43.003Z",
  "expiresAt": null,
  "createdAt": "2025-07-20T23:57:37.350Z",
  "updatedAt": "2025-07-24T23:08:51.993Z"
}
Draftbit