example-data.com
Menu
Browse docs and collections

applications

applications

Page 12 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": 265,
      "userId": 173,
      "jobId": 53,
      "status": "applied",
      "coverLetter": "Ea supplanto thesis adficio uterque adeptio. Ait suppellex placeat aduro sed adulescens sponte omnis. Sufficio statua celer.",
      "appliedAt": "2026-04-17T11:54:49.190Z",
      "lastUpdatedAt": "2026-05-19T19:03:48.985Z"
    },
    {
      "id": 266,
      "userId": 173,
      "jobId": 22,
      "status": "applied",
      "coverLetter": "Bardus aranea thermae fugiat apostolus deduco. Ex argentum casus. Sub bos delego coaegresco acerbitas subseco suppono rerum optio.",
      "appliedAt": "2024-06-15T04:03:46.673Z",
      "lastUpdatedAt": "2024-06-29T09:53:46.421Z"
    },
    {
      "id": 267,
      "userId": 173,
      "jobId": 216,
      "status": "screening",
      "coverLetter": "Auctor tergeo delego minus corona bibo aperte cohors corpus conforto. Cursus ciminatio abeo vestrum terebro studio caput minus vinco ancilla. Nulla traho tero conqueror.",
      "appliedAt": "2026-01-04T11:46:51.457Z",
      "lastUpdatedAt": "2026-02-18T20:05:08.839Z"
    }
  ],
  "meta": {
    "page": 12,
    "limit": 24,
    "total": 389,
    "totalPages": 17
  },
  "links": {
    "self": "/api/v1/applications?page=12&limit=24",
    "first": "/api/v1/applications?page=1&limit=24",
    "last": "/api/v1/applications?page=17&limit=24",
    "next": "/api/v1/applications?page=13&limit=24",
    "prev": "/api/v1/applications?page=11&limit=24"
  }
}