applications
applications
Page 2 of 17.
Overview
-
User #16 applied (screening) Job #35
1/10/2026, 2:57:43 PM
View record -
User #17 applied (interview) Job #126
4/20/2026, 5:59:12 PM
View record -
User #17 applied (applied) Job #108
2/11/2026, 1:20:25 PM
View record -
User #18 applied (accepted) Job #137
11/9/2025, 7:28:31 AM
View record -
User #18 applied (applied) Job #211
2/10/2026, 9:30:21 AM
View record -
User #19 applied (interview) Job #76
6/23/2025, 5:47:57 PM
View record -
User #19 applied (applied) Job #79
4/28/2025, 10:52:01 PM
View record -
User #20 applied (rejected) Job #133
8/23/2025, 3:54:36 AM
View record -
User #23 applied (screening) Job #17
3/22/2026, 7:41:21 PM
View record -
User #24 applied (interview) Job #131
2/17/2025, 6:35:35 AM
View record -
User #24 applied (applied) Job #227
2/26/2026, 2:30:29 PM
View record -
User #24 applied (screening) Job #186
9/16/2025, 1:03:13 AM
View record -
User #25 applied (screening) Job #214
10/19/2024, 2:13:47 PM
View record -
User #25 applied (applied) Job #147
11/27/2025, 12:47:42 PM
View record -
User #27 applied (screening) Job #47
5/17/2026, 8:04:27 AM
View record -
User #27 applied (screening) Job #22
1/11/2026, 6:00:07 AM
View record -
User #28 applied (applied) Job #52
4/23/2025, 2:27:02 AM
View record -
User #30 applied (screening) Job #96
10/23/2025, 5:48:57 AM
View record -
User #31 applied (applied) Job #235
1/17/2026, 7:29:56 PM
View record -
User #32 applied (offer) Job #37
4/26/2026, 8:18:17 PM
View record -
User #32 applied (screening) Job #8
11/19/2025, 4:51:58 PM
View record -
User #32 applied (rejected) Job #84
6/7/2025, 2:31:40 AM
View record -
User #33 applied (applied) Job #222
10/13/2025, 11:46:25 PM
View record -
User #34 applied (applied) Job #146
2/23/2025, 11:05:03 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": 25,
"userId": 16,
"jobId": 35,
"status": "screening",
"coverLetter": "Quisquam succurro cupressus quod desolo quasi ager caterva. Demens altus usitas caries adeo. Comis totus adsuesco varietas defungo defleo deputo.\n\nTenuis cur repellat soluta conventus verbum apparatus sollers quisquam vitae. Atqui titulus delego abeo utrum. Undique labore aestivus officiis volo vado.",
"appliedAt": "2026-01-10T14:57:43.806Z",
"lastUpdatedAt": "2026-03-02T09:02:32.584Z"
},
{
"id": 26,
"userId": 17,
"jobId": 126,
"status": "interview",
"coverLetter": "Cervus aeger stillicidium. Stillicidium ullam omnis denuo calcar aetas. Tremo beatus cubicularis tamdiu antepono cursim corrigo angustus utor annus.",
"appliedAt": "2026-04-20T17:59:12.980Z",
"lastUpdatedAt": "2026-04-21T17:12:37.732Z"
},
{
"id": 27,
"userId": 17,
"jobId": 108,
"status": "applied",
"coverLetter": "Tibi aro molestiae mollitia arbor molestias adimpleo umerus talio virtus. Victus ambulo denique repudiandae basium cetera suscipio. Vaco cura vitae sollicito arbor.",
"appliedAt": "2026-02-11T13:20:25.820Z",
"lastUpdatedAt": "2026-03-22T07:49:18.204Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 389,
"totalPages": 17
},
"links": {
"self": "/api/v1/applications?page=2&limit=24",
"first": "/api/v1/applications?page=1&limit=24",
"last": "/api/v1/applications?page=17&limit=24",
"next": "/api/v1/applications?page=3&limit=24",
"prev": "/api/v1/applications?page=1&limit=24"
}
}