applications
applications
Page 11 of 17.
Overview
-
User #158 applied (applied) Job #104
1/12/2026, 7:29:33 AM
View record -
User #158 applied (offer) Job #190
2/20/2025, 12:19:58 PM
View record -
User #158 applied (applied) Job #189
5/18/2025, 10:15:57 PM
View record -
User #159 applied (screening) Job #125
12/1/2025, 6:21:58 PM
View record -
User #159 applied (withdrawn) Job #160
2/19/2026, 12:52:47 AM
View record -
User #159 applied (interview) Job #10
5/13/2026, 3:59:03 PM
View record -
User #161 applied (applied) Job #227
4/23/2026, 6:57:43 PM
View record -
User #161 applied (withdrawn) Job #80
1/29/2026, 7:56:19 AM
View record -
User #162 applied (applied) Job #197
3/25/2026, 1:18:10 AM
View record -
User #163 applied (applied) Job #153
12/17/2025, 11:06:28 AM
View record -
User #165 applied (rejected) Job #187
11/14/2025, 11:10:47 PM
View record -
User #165 applied (accepted) Job #233
10/12/2024, 4:56:32 AM
View record -
User #165 applied (applied) Job #35
11/4/2025, 7:28:11 AM
View record -
User #166 applied (interview) Job #70
4/17/2026, 6:46:40 PM
View record -
User #166 applied (screening) Job #91
10/9/2025, 1:09:25 AM
View record -
User #167 applied (applied) Job #207
5/1/2025, 6:14:37 PM
View record -
User #169 applied (screening) Job #81
5/19/2026, 4:36:53 AM
View record -
User #170 applied (rejected) Job #121
6/3/2024, 12:50:29 PM
View record -
User #170 applied (screening) Job #59
3/20/2026, 9:58:31 AM
View record -
User #170 applied (accepted) Job #157
6/14/2025, 12:17:28 AM
View record -
User #171 applied (screening) Job #7
8/26/2025, 9:32:29 AM
View record -
User #172 applied (withdrawn) Job #10
5/7/2026, 8:08:28 AM
View record -
User #172 applied (screening) Job #68
1/16/2026, 1:21:57 AM
View record -
User #172 applied (applied) Job #223
11/18/2025, 7:57:41 AM
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": 241,
"userId": 158,
"jobId": 104,
"status": "applied",
"coverLetter": "Culpa cenaculum aliquid utilis corroboro vallum venio ars. Carpo coma ter. Patruus verto copia.",
"appliedAt": "2026-01-12T07:29:33.128Z",
"lastUpdatedAt": "2026-03-01T03:49:34.021Z"
},
{
"id": 242,
"userId": 158,
"jobId": 190,
"status": "offer",
"coverLetter": "Arbustum spoliatio demoror defleo cultellus creptio ars cunae. Subiungo aranea vulariter alii. Toties nisi tredecim at quidem tabula coma.\n\nCustodia thermae suscipit consequuntur aveho vilicus tero. Defluo solitudo truculenter vinculum ago tres absconditus. Consequatur aestus casso curvo vinculum ea tertius.",
"appliedAt": "2025-02-20T12:19:58.920Z",
"lastUpdatedAt": "2025-04-04T07:24:55.013Z"
},
{
"id": 243,
"userId": 158,
"jobId": 189,
"status": "applied",
"coverLetter": "Quis vulgivagus tametsi auxilium. Suppellex cruciamentum amo benigne altus crapula dolorum. Vesica via tumultus sumo optio defungo sortitus.",
"appliedAt": "2025-05-18T22:15:57.734Z",
"lastUpdatedAt": "2025-07-08T23:21:21.280Z"
}
],
"meta": {
"page": 11,
"limit": 24,
"total": 389,
"totalPages": 17
},
"links": {
"self": "/api/v1/applications?page=11&limit=24",
"first": "/api/v1/applications?page=1&limit=24",
"last": "/api/v1/applications?page=17&limit=24",
"next": "/api/v1/applications?page=12&limit=24",
"prev": "/api/v1/applications?page=10&limit=24"
}
}