applications
applications
Page 12 of 17.
Overview
-
User #173 applied (applied) Job #53
4/17/2026, 11:54:49 AM
View record -
User #173 applied (applied) Job #22
6/15/2024, 4:03:46 AM
View record -
User #173 applied (screening) Job #216
1/4/2026, 11:46:51 AM
View record -
User #174 applied (rejected) Job #37
8/20/2025, 12:53:13 AM
View record -
User #175 applied (applied) Job #108
4/4/2026, 9:52:23 AM
View record -
User #175 applied (accepted) Job #73
11/20/2025, 4:58:43 AM
View record -
User #175 applied (screening) Job #236
5/19/2026, 11:28:14 PM
View record -
User #176 applied (rejected) Job #126
1/10/2026, 4:22:49 AM
View record -
User #177 applied (screening) Job #140
3/30/2026, 3:25:59 PM
View record -
User #177 applied (interview) Job #134
4/17/2025, 12:10:17 PM
View record -
User #181 applied (withdrawn) Job #45
2/22/2025, 5:56:50 PM
View record -
User #181 applied (applied) Job #209
2/4/2026, 2:49:20 AM
View record -
User #181 applied (offer) Job #74
2/4/2025, 2:51:31 AM
View record -
User #182 applied (rejected) Job #92
3/31/2026, 5:49:01 PM
View record -
User #182 applied (offer) Job #217
11/14/2025, 7:31:56 PM
View record -
User #183 applied (applied) Job #231
11/5/2025, 8:43:54 AM
View record -
User #186 applied (screening) Job #106
5/9/2026, 5:30:10 AM
View record -
User #186 applied (applied) Job #126
11/30/2025, 12:43:49 PM
View record -
User #187 applied (applied) Job #210
2/4/2025, 8:53:32 PM
View record -
User #187 applied (interview) Job #149
9/13/2025, 11:58:32 AM
View record -
User #188 applied (applied) Job #104
7/27/2025, 5:20:13 PM
View record -
User #189 applied (applied) Job #57
8/29/2025, 2:32:07 PM
View record -
User #189 applied (screening) Job #172
3/25/2026, 2:09:35 PM
View record -
User #189 applied (interview) Job #11
4/17/2026, 11:17:18 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": 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"
}
}