example-data.com
Menu
Browse docs and collections

Overview

jobs / #7

Full Stack Engineer

USD174000.00

Utilis aliquam conforto caelum vulgaris comedo accommodo auctus. Maiores iure timor sono aliquam solus volutabrum caveo. Possimus sto conservo arbitro. Capto abduco acidus. Cubo aduro eos aestivus explicabo animi. Dedecor cupressus vulgus.

Category
onsite

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 7,
  "companyId": 2,
  "title": "Full Stack Engineer",
  "slug": "full-stack-engineer-7",
  "description": "Utilis aliquam conforto caelum vulgaris comedo accommodo auctus. Maiores iure timor sono aliquam solus volutabrum caveo. Possimus sto conservo arbitro.\n\nCapto abduco acidus. Cubo aduro eos aestivus explicabo animi. Dedecor cupressus vulgus.",
  "employmentType": "full_time",
  "locationType": "onsite",
  "location": "Glen Burnie, Antarctica",
  "salaryMin": 174000,
  "salaryMax": 245420,
  "currency": "USD",
  "isPublished": true,
  "postedAt": "2025-06-15T03:52:06.925Z",
  "expiresAt": "2025-08-05T03:52:06.925Z",
  "createdAt": "2025-06-14T16:15:04.854Z",
  "updatedAt": "2025-06-17T06:26:06.451Z"
}