applications
applications
Page 14 of 17.
Overview
-
User #204 applied (applied) Job #102
5/15/2026, 11:39:55 PM
View record -
User #205 applied (screening) Job #116
4/7/2026, 2:06:32 PM
View record -
User #205 applied (screening) Job #26
12/19/2025, 11:01:20 PM
View record -
User #205 applied (offer) Job #196
12/4/2025, 12:53:35 AM
View record -
User #206 applied (applied) Job #204
3/21/2026, 12:11:45 PM
View record -
User #206 applied (interview) Job #116
4/26/2026, 9:34:19 AM
View record -
User #206 applied (interview) Job #37
11/12/2025, 6:53:17 AM
View record -
User #207 applied (screening) Job #153
9/25/2025, 5:24:49 AM
View record -
User #208 applied (applied) Job #222
2/9/2026, 12:57:22 PM
View record -
User #208 applied (applied) Job #62
3/7/2026, 2:38:22 AM
View record -
User #208 applied (screening) Job #136
3/26/2026, 8:11:30 AM
View record -
User #209 applied (rejected) Job #188
1/24/2026, 3:46:33 AM
View record -
User #210 applied (offer) Job #159
4/6/2026, 8:30:36 PM
View record -
User #211 applied (interview) Job #122
11/8/2025, 10:38:14 AM
View record -
User #211 applied (interview) Job #49
3/13/2026, 12:34:45 AM
View record -
User #212 applied (screening) Job #237
5/19/2026, 1:47:04 PM
View record -
User #213 applied (screening) Job #102
4/20/2026, 10:43:57 AM
View record -
User #213 applied (rejected) Job #237
5/15/2026, 9:35:24 AM
View record -
User #215 applied (screening) Job #60
3/8/2026, 9:32:56 AM
View record -
User #215 applied (applied) Job #19
10/27/2025, 3:35:04 AM
View record -
User #216 applied (rejected) Job #18
4/1/2026, 4:04:23 PM
View record -
User #217 applied (applied) Job #210
11/2/2024, 4:18:11 PM
View record -
User #217 applied (applied) Job #56
5/10/2026, 4:10:43 AM
View record -
User #217 applied (applied) Job #146
1/24/2025, 9:40:38 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": 313,
"userId": 204,
"jobId": 102,
"status": "applied",
"coverLetter": "Victus supellex ceno veritas assentator claro dedecor. Adstringo ultio aggredior inventore verto usitas crudelis commodi. Conduco aperio decumbo tam bene thesis magni thalassinus ait.\n\nCuriositas suggero vito verumtamen. Audacia statim magnam astrum cenaculum. Textor aliquid cariosus.",
"appliedAt": "2026-05-15T23:39:55.008Z",
"lastUpdatedAt": "2026-05-16T16:02:01.559Z"
},
{
"id": 314,
"userId": 205,
"jobId": 116,
"status": "screening",
"coverLetter": "Eos creta adversus absque comedo atrocitas cubo arbitro. Sint derideo pel. Capio ultio comes conspergo ambulo minima.",
"appliedAt": "2026-04-07T14:06:32.990Z",
"lastUpdatedAt": "2026-05-01T22:02:20.332Z"
},
{
"id": 315,
"userId": 205,
"jobId": 26,
"status": "screening",
"coverLetter": "Triduana depopulo molestiae depraedor beneficium volup. Absum pauper defungo beneficium cunabula uter talio. Uberrime audacia nam ventito delibero.\n\nSpargo suscipio versus aegre terror tripudio. Quos enim benigne porro termes abscido. Tenax umbra amor sui amicitia statua benigne.",
"appliedAt": "2025-12-19T23:01:20.976Z",
"lastUpdatedAt": "2026-01-07T09:28:12.856Z"
}
],
"meta": {
"page": 14,
"limit": 24,
"total": 389,
"totalPages": 17
},
"links": {
"self": "/api/v1/applications?page=14&limit=24",
"first": "/api/v1/applications?page=1&limit=24",
"last": "/api/v1/applications?page=17&limit=24",
"next": "/api/v1/applications?page=15&limit=24",
"prev": "/api/v1/applications?page=13&limit=24"
}
}