applications
applications
Page 6 of 17.
Overview
-
User #82 applied (withdrawn) Job #200
10/7/2025, 4:17:44 PM
View record -
User #83 applied (withdrawn) Job #184
5/1/2026, 11:53:51 PM
View record -
User #85 applied (offer) Job #42
12/22/2025, 6:56:07 PM
View record -
User #85 applied (interview) Job #216
10/15/2025, 5:24:42 PM
View record -
User #86 applied (screening) Job #201
4/15/2026, 2:13:19 PM
View record -
User #87 applied (screening) Job #191
3/15/2026, 11:02:21 AM
View record -
User #87 applied (applied) Job #177
11/10/2024, 1:36:02 AM
View record -
User #89 applied (offer) Job #143
4/6/2026, 2:41:38 AM
View record -
User #89 applied (interview) Job #135
5/10/2026, 8:57:26 PM
View record -
User #89 applied (screening) Job #140
4/18/2026, 6:16:06 PM
View record -
User #90 applied (applied) Job #20
4/14/2026, 8:00:57 PM
View record -
User #90 applied (interview) Job #101
10/14/2025, 7:32:42 PM
View record -
User #90 applied (rejected) Job #146
8/13/2025, 5:07:10 PM
View record -
User #91 applied (screening) Job #68
3/13/2026, 3:45:34 AM
View record -
User #93 applied (applied) Job #220
9/5/2025, 8:30:14 PM
View record -
User #94 applied (accepted) Job #112
5/9/2026, 7:37:10 AM
View record -
User #94 applied (offer) Job #145
3/29/2026, 2:16:58 PM
View record -
User #94 applied (applied) Job #197
3/16/2026, 9:33:00 AM
View record -
User #96 applied (interview) Job #82
10/9/2024, 11:02:01 PM
View record -
User #98 applied (rejected) Job #163
12/15/2025, 11:39:41 PM
View record -
User #99 applied (applied) Job #36
9/23/2024, 9:06:15 AM
View record -
User #100 applied (screening) Job #4
11/5/2025, 11:13:06 PM
View record -
User #101 applied (applied) Job #75
10/22/2024, 8:48:07 AM
View record -
User #101 applied (applied) Job #56
12/11/2024, 9:12:10 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": 121,
"userId": 82,
"jobId": 200,
"status": "withdrawn",
"coverLetter": "Vereor subnecto benigne ventosus vilis suspendo. Odio deserunt beatus ulciscor ratione. Carpo cupiditate aestas sophismata administratio.",
"appliedAt": "2025-10-07T16:17:44.003Z",
"lastUpdatedAt": "2025-11-08T13:17:21.867Z"
},
{
"id": 122,
"userId": 83,
"jobId": 184,
"status": "withdrawn",
"coverLetter": "Ustulo clam cenaculum ducimus ipsam arcesso damno creator deripio stips. Unde stella studio neque solus cinis currus suffoco deinde. Tenetur placeat vulnero curtus.\n\nTrans amita admiratio pectus. Argentum conor dolores degusto candidus sed ager cura. Avarus armarium ciminatio tremo tardus degero.",
"appliedAt": "2026-05-01T23:53:51.802Z",
"lastUpdatedAt": "2026-05-12T08:37:48.413Z"
},
{
"id": 123,
"userId": 85,
"jobId": 42,
"status": "offer",
"coverLetter": "Synagoga ars pecto thymum conventus absconditus tristis aperio. Abbas copia chirographum acquiro agnosco. Succurro causa triduana usque torrens derelinquo creta tamisium atavus.\n\nDamno umbra talio supellex xiphias. Quaerat ustulo audio quae amet adhaero chirographum. Assumenda testimonium possimus ager altus coniuratio cognatus.",
"appliedAt": "2025-12-22T18:56:07.284Z",
"lastUpdatedAt": "2026-02-19T21:25:24.217Z"
}
],
"meta": {
"page": 6,
"limit": 24,
"total": 389,
"totalPages": 17
},
"links": {
"self": "/api/v1/applications?page=6&limit=24",
"first": "/api/v1/applications?page=1&limit=24",
"last": "/api/v1/applications?page=17&limit=24",
"next": "/api/v1/applications?page=7&limit=24",
"prev": "/api/v1/applications?page=5&limit=24"
}
}