applications
applications
Page 13 of 17.
Overview
-
User #190 applied (screening) Job #10
5/19/2026, 10:44:42 PM
View record -
User #190 applied (accepted) Job #166
7/3/2025, 11:36:01 PM
View record -
User #192 applied (screening) Job #197
4/27/2026, 6:01:17 AM
View record -
User #192 applied (interview) Job #15
5/21/2026, 9:18:56 PM
View record -
User #193 applied (applied) Job #149
7/27/2025, 12:03:25 AM
View record -
User #193 applied (offer) Job #103
11/18/2025, 4:43:30 PM
View record -
User #194 applied (interview) Job #33
5/12/2026, 7:54:32 AM
View record -
User #194 applied (interview) Job #85
2/28/2026, 1:15:43 AM
View record -
User #195 applied (applied) Job #196
5/18/2025, 8:40:21 AM
View record -
User #195 applied (applied) Job #49
4/4/2026, 1:48:36 PM
View record -
User #198 applied (offer) Job #49
3/29/2026, 2:04:05 PM
View record -
User #199 applied (screening) Job #74
6/29/2025, 10:08:04 AM
View record -
User #199 applied (interview) Job #2
4/19/2026, 2:33:28 PM
View record -
User #200 applied (interview) Job #13
4/19/2026, 4:35:07 PM
View record -
User #200 applied (interview) Job #183
10/14/2025, 3:39:18 PM
View record -
User #200 applied (accepted) Job #42
12/19/2025, 10:26:38 PM
View record -
User #201 applied (applied) Job #96
4/14/2025, 8:53:56 AM
View record -
User #202 applied (withdrawn) Job #138
4/11/2026, 1:56:19 AM
View record -
User #202 applied (rejected) Job #195
11/12/2025, 8:53:56 AM
View record -
User #203 applied (interview) Job #239
5/17/2026, 7:56:03 PM
View record -
User #203 applied (rejected) Job #238
3/28/2026, 5:48:10 AM
View record -
User #203 applied (accepted) Job #175
12/9/2025, 6:43:56 PM
View record -
User #204 applied (accepted) Job #155
3/3/2026, 6:30:40 AM
View record -
User #204 applied (accepted) Job #101
3/19/2026, 7:33:27 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": 289,
"userId": 190,
"jobId": 10,
"status": "screening",
"coverLetter": "Charisma ex audax vinco cura suppellex. Uter sint dicta totidem cohaero totam. Adsum vespillo auctus terebro taceo vivo tepesco neque velum aperte.\n\nAt vacuus virtus ullus carcer alias arbitro verecundia. Tremo alii denique alius acidus similique virtus cumque. Comparo quos strues contigo clam.",
"appliedAt": "2026-05-19T22:44:42.861Z",
"lastUpdatedAt": "2026-05-21T09:09:06.619Z"
},
{
"id": 290,
"userId": 190,
"jobId": 166,
"status": "accepted",
"coverLetter": "Caries velociter illo. Dolores arx temptatio thesaurus suppellex. Vado contigo patior sui adflicto ante tripudio concedo infit.",
"appliedAt": "2025-07-03T23:36:01.270Z",
"lastUpdatedAt": "2025-07-17T05:27:07.016Z"
},
{
"id": 291,
"userId": 192,
"jobId": 197,
"status": "screening",
"coverLetter": "Valde cattus cerno terebro aqua unde. Constans carcer aequus caput sumo capillus. Tumultus cum dolorum cursim cito caecus corrumpo adversus.",
"appliedAt": "2026-04-27T06:01:17.584Z",
"lastUpdatedAt": "2026-05-21T17:51:05.677Z"
}
],
"meta": {
"page": 13,
"limit": 24,
"total": 389,
"totalPages": 17
},
"links": {
"self": "/api/v1/applications?page=13&limit=24",
"first": "/api/v1/applications?page=1&limit=24",
"last": "/api/v1/applications?page=17&limit=24",
"next": "/api/v1/applications?page=14&limit=24",
"prev": "/api/v1/applications?page=12&limit=24"
}
}