example-data.com
Menu
Browse docs and collections

jobs

jobs

Page 6 of 10.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/jobs?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/jobs?limit=25"
);
const { data, meta } = 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, ListEnvelope } from "./types/jobs";

const res = await fetch(
  "https://example-data.com/api/v1/jobs?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Job>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/jobs",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 121,
      "companyId": 41,
      "title": "Software Engineer",
      "slug": "software-engineer-121",
      "description": "Rem denego thorax eligendi decens aliqua cetera. Asporto blanditiis tandem comes angelus stips. Excepturi canis comis.\n\nModi adimpleo stillicidium. Vorago bestia universe ago timor videlicet cruciamentum damnatio decimus. Claro tepesco contego crur.\n\nVita tantillus suffoco praesentium torqueo amitto eum. Vix consequuntur deputo. Demoror cariosus decor timor.",
      "employmentType": "temporary",
      "locationType": "hybrid",
      "location": "Nathenview, Northern Mariana Islands",
      "salaryMin": 114000,
      "salaryMax": 150074,
      "currency": "USD",
      "isPublished": true,
      "postedAt": "2024-05-29T07:21:07.009Z",
      "expiresAt": "2024-08-27T07:21:07.009Z",
      "createdAt": "2024-05-28T12:12:13.999Z",
      "updatedAt": "2024-06-02T17:23:07.707Z"
    },
    {
      "id": 122,
      "companyId": 42,
      "title": "Frontend Engineer",
      "slug": "frontend-engineer-122",
      "description": "Atavus dedico vox tubineus facere nemo. Barba clarus denuncio quasi accendo degenero arbustum. Casus depromo auditor patior.\n\nAdvenio amoveo conor vociferor. Curatio adhuc aetas apud paulatim. Tonsor repudiandae coadunatio tendo dapifer decerno caries artificiose.\n\nValidus cruentus tutis civitas comedo credo verecundia. Conor asperiores carpo. Teneo vilis commodi chirographum.\n\nCibo vinum amissio tres. Avarus culpa viduo praesentium. Deripio adinventitias adnuo asper adopto ventosus.",
      "employmentType": "internship",
      "locationType": "onsite",
      "location": "Roseville, Tajikistan",
      "salaryMin": 63000,
      "salaryMax": 129975,
      "currency": "USD",
      "isPublished": true,
      "postedAt": "2025-07-23T08:32:40.926Z",
      "expiresAt": "2025-10-21T08:32:40.926Z",
      "createdAt": "2025-07-22T09:51:15.742Z",
      "updatedAt": "2025-07-24T02:25:14.526Z"
    },
    {
      "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"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 240,
    "totalPages": 10
  },
  "links": {
    "self": "/api/v1/jobs?page=6&limit=24",
    "first": "/api/v1/jobs?page=1&limit=24",
    "last": "/api/v1/jobs?page=10&limit=24",
    "next": "/api/v1/jobs?page=7&limit=24",
    "prev": "/api/v1/jobs?page=5&limit=24"
  }
}