example-data.com
Menu
Browse docs and collections

Overview

jobs / #221

Senior Software Engineer

USD154000.00

Ara creber aperio excepturi concido aveho quas. Inflammatio peior vinco temporibus aegre taceo studio tego. Thermae adinventitias aurum casso trans tonsor conor calco. Aequitas teneo magni libero surgo defaeco theologus una. Umbra apto antea truculenter celo clibanus sordeo. Comitatus aperte desino thema timor.

Category
hybrid

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 221,
  "companyId": 71,
  "title": "Senior Software Engineer",
  "slug": "senior-software-engineer-221",
  "description": "Ara creber aperio excepturi concido aveho quas. Inflammatio peior vinco temporibus aegre taceo studio tego. Thermae adinventitias aurum casso trans tonsor conor calco.\n\nAequitas teneo magni libero surgo defaeco theologus una. Umbra apto antea truculenter celo clibanus sordeo. Comitatus aperte desino thema timor.",
  "employmentType": "contract",
  "locationType": "hybrid",
  "location": "South Carley, Turks and Caicos Islands",
  "salaryMin": 154000,
  "salaryMax": 180237,
  "currency": "USD",
  "isPublished": false,
  "postedAt": "2025-12-09T19:08:32.645Z",
  "expiresAt": "2026-02-20T19:08:32.645Z",
  "createdAt": "2025-12-09T18:42:12.047Z",
  "updatedAt": "2025-12-15T02:05:55.818Z"
}