example-data.com
Menu
Browse docs and collections

Overview

jobs / #58

Sales Development Representative

USD88000.00

Calamitas vulariter astrum. Terra culpa provident. Arbor vesica volva vulgus vester compono. Callide dicta varius brevis usque subito approbo incidunt dens. Depromo termes carpo artificiose crinis alveus terra. Stella deficio bestia dicta.

Category
hybrid

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 58,
  "companyId": 23,
  "title": "Sales Development Representative",
  "slug": "sales-development-representative-58",
  "description": "Calamitas vulariter astrum. Terra culpa provident. Arbor vesica volva vulgus vester compono.\n\nCallide dicta varius brevis usque subito approbo incidunt dens. Depromo termes carpo artificiose crinis alveus terra. Stella deficio bestia dicta.",
  "employmentType": "temporary",
  "locationType": "hybrid",
  "location": "East Patienceview, Paraguay",
  "salaryMin": 88000,
  "salaryMax": 107666,
  "currency": "USD",
  "isPublished": true,
  "postedAt": "2026-04-03T08:30:02.633Z",
  "expiresAt": null,
  "createdAt": "2026-04-02T10:12:50.719Z",
  "updatedAt": "2026-04-04T01:18:30.475Z"
}