applications
applications
Page 17 of 17.
Overview
-
User #248 applied (interview) Job #89
12/11/2025, 10:50:54 AM
View record -
User #248 applied (offer) Job #34
4/21/2026, 1:36:59 PM
View record -
User #248 applied (applied) Job #228
5/21/2026, 3:52:18 AM
View record -
User #249 applied (rejected) Job #43
5/1/2026, 6:52:31 PM
View record -
User #250 applied (screening) Job #117
5/14/2026, 11:15:51 PM
View record
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": 385,
"userId": 248,
"jobId": 89,
"status": "interview",
"coverLetter": "Curvo stabilis comitatus sol dolorum volo. Certus traho quaerat admoneo adeo accusator testimonium autus creptio iure. Defungo tenetur dedico ciminatio torrens amaritudo carmen attero sono.\n\nAttero absconditus desipio vilicus voco spiculum patrocinor deporto. Aedificium pax caveo carcer velit patrocinor caelum tot. Depono adversus acsi adfero curatio turpis casus laudantium.",
"appliedAt": "2025-12-11T10:50:54.430Z",
"lastUpdatedAt": "2026-01-20T02:52:45.112Z"
},
{
"id": 386,
"userId": 248,
"jobId": 34,
"status": "offer",
"coverLetter": "Corroboro chirographum voluptatum dicta celer adinventitias tenax stabilis. Cur abscido tonsor ambulo. Constans iure tutis cunabula subiungo cohaero.",
"appliedAt": "2026-04-21T13:36:59.625Z",
"lastUpdatedAt": "2026-04-26T07:22:42.362Z"
},
{
"id": 387,
"userId": 248,
"jobId": 228,
"status": "applied",
"coverLetter": "Summopere alienus caveo. Super adeptio neque totus tabula cogito arcus succedo. Tendo vix deprecator vereor theologus defendo.",
"appliedAt": "2026-05-21T03:52:18.743Z",
"lastUpdatedAt": "2026-05-21T21:56:24.662Z"
}
],
"meta": {
"page": 17,
"limit": 24,
"total": 389,
"totalPages": 17
},
"links": {
"self": "/api/v1/applications?page=17&limit=24",
"first": "/api/v1/applications?page=1&limit=24",
"last": "/api/v1/applications?page=17&limit=24",
"next": null,
"prev": "/api/v1/applications?page=16&limit=24"
}
}