example-data.com
Menu
Browse docs and collections

Overview

jobs / #65

Operations Analyst

USD41000.00

Pecco textilis vorax bonus commodo armarium strues claustrum. Campana thermae amita vox tertius caelestis iste volup. Asporto ratione vomer vere. Celer et angulus. Ceno verbum altus centum versus patior. Vereor convoco turbo colligo adopto demoror illo venia thermae.

Category
onsite

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 65,
  "companyId": 25,
  "title": "Operations Analyst",
  "slug": "operations-analyst-65",
  "description": "Pecco textilis vorax bonus commodo armarium strues claustrum. Campana thermae amita vox tertius caelestis iste volup. Asporto ratione vomer vere.\n\nCeler et angulus. Ceno verbum altus centum versus patior. Vereor convoco turbo colligo adopto demoror illo venia thermae.",
  "employmentType": "full_time",
  "locationType": "onsite",
  "location": "East William, Guernsey",
  "salaryMin": 41000,
  "salaryMax": 92294,
  "currency": "USD",
  "isPublished": true,
  "postedAt": "2026-03-26T20:02:19.649Z",
  "expiresAt": null,
  "createdAt": "2026-03-26T10:40:33.577Z",
  "updatedAt": "2026-03-29T23:11:20.970Z"
}