example-data.com
Menu
Browse docs and collections

applications

applications

Page 13 of 17.

Overview

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/applications?limit=25"
);
const { data, meta } = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/applications.d.ts https://example-data.com/types/applications.d.ts
import type { Application, ListEnvelope } from "./types/applications";

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

Python example

import requests

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

Response

{
  "data": [
    {
      "id": 289,
      "userId": 190,
      "jobId": 10,
      "status": "screening",
      "coverLetter": "Charisma ex audax vinco cura suppellex. Uter sint dicta totidem cohaero totam. Adsum vespillo auctus terebro taceo vivo tepesco neque velum aperte.\n\nAt vacuus virtus ullus carcer alias arbitro verecundia. Tremo alii denique alius acidus similique virtus cumque. Comparo quos strues contigo clam.",
      "appliedAt": "2026-05-19T22:44:42.861Z",
      "lastUpdatedAt": "2026-05-21T09:09:06.619Z"
    },
    {
      "id": 290,
      "userId": 190,
      "jobId": 166,
      "status": "accepted",
      "coverLetter": "Caries velociter illo. Dolores arx temptatio thesaurus suppellex. Vado contigo patior sui adflicto ante tripudio concedo infit.",
      "appliedAt": "2025-07-03T23:36:01.270Z",
      "lastUpdatedAt": "2025-07-17T05:27:07.016Z"
    },
    {
      "id": 291,
      "userId": 192,
      "jobId": 197,
      "status": "screening",
      "coverLetter": "Valde cattus cerno terebro aqua unde. Constans carcer aequus caput sumo capillus. Tumultus cum dolorum cursim cito caecus corrumpo adversus.",
      "appliedAt": "2026-04-27T06:01:17.584Z",
      "lastUpdatedAt": "2026-05-21T17:51:05.677Z"
    }
  ],
  "meta": {
    "page": 13,
    "limit": 24,
    "total": 389,
    "totalPages": 17
  },
  "links": {
    "self": "/api/v1/applications?page=13&limit=24",
    "first": "/api/v1/applications?page=1&limit=24",
    "last": "/api/v1/applications?page=17&limit=24",
    "next": "/api/v1/applications?page=14&limit=24",
    "prev": "/api/v1/applications?page=12&limit=24"
  }
}