applications
applications
Page 8 of 17.
Overview
-
User #116 applied (interview) Job #158
1/28/2026, 8:36:48 PM
View record -
User #116 applied (screening) Job #87
11/14/2025, 12:54:16 PM
View record -
User #117 applied (screening) Job #51
4/28/2026, 3:09:20 AM
View record -
User #117 applied (applied) Job #50
4/10/2026, 3:27:02 PM
View record -
User #117 applied (screening) Job #221
4/29/2026, 3:52:05 AM
View record -
User #118 applied (offer) Job #9
3/4/2026, 5:07:45 PM
View record -
User #119 applied (withdrawn) Job #45
5/10/2025, 1:46:21 AM
View record -
User #119 applied (withdrawn) Job #183
12/17/2025, 11:17:37 PM
View record -
User #119 applied (withdrawn) Job #217
10/3/2024, 10:17:56 PM
View record -
User #122 applied (screening) Job #53
4/8/2026, 2:03:21 PM
View record -
User #122 applied (screening) Job #71
3/8/2026, 3:04:03 AM
View record -
User #123 applied (interview) Job #33
2/10/2026, 2:59:01 PM
View record -
User #123 applied (screening) Job #88
3/24/2026, 8:32:21 PM
View record -
User #124 applied (applied) Job #172
4/10/2026, 12:27:41 AM
View record -
User #125 applied (applied) Job #194
5/11/2025, 6:44:25 AM
View record -
User #125 applied (interview) Job #193
2/15/2026, 1:35:09 AM
View record -
User #125 applied (interview) Job #70
2/26/2026, 8:44:07 PM
View record -
User #126 applied (withdrawn) Job #169
12/3/2025, 11:38:34 PM
View record -
User #126 applied (accepted) Job #3
5/7/2025, 11:36:04 PM
View record -
User #127 applied (rejected) Job #178
4/20/2026, 11:22:34 PM
View record -
User #128 applied (applied) Job #214
12/7/2024, 6:14:18 PM
View record -
User #130 applied (rejected) Job #77
12/25/2025, 11:23:55 PM
View record -
User #131 applied (applied) Job #53
5/14/2026, 8:37:04 PM
View record -
User #131 applied (interview) Job #157
3/6/2025, 2:26:48 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": 169,
"userId": 116,
"jobId": 158,
"status": "interview",
"coverLetter": "Harum teres velociter cui quam decimus texo. Itaque dedecor creptio curo tego subnecto cui quia. Id clementia in bellum adulescens barba valeo apostolus artificiose.\n\nTactus uterque alii vere. Voluptas somnus conculco suppellex adversus curvo vindico. Nisi tutis volo minima tam.",
"appliedAt": "2026-01-28T20:36:48.908Z",
"lastUpdatedAt": "2026-02-12T17:36:32.015Z"
},
{
"id": 170,
"userId": 116,
"jobId": 87,
"status": "screening",
"coverLetter": "Defero atqui subvenio eaque bonus studio usus necessitatibus omnis. Eligendi suggero pecco utilis summa tantum apostolus. Cubo asper comminor aestas solus aperte adipiscor.\n\nVinitor vulticulus pauper accusator collum amplexus neque. Aut suppono vomica textus. Atrocitas delego suasoria.",
"appliedAt": "2025-11-14T12:54:16.046Z",
"lastUpdatedAt": "2025-12-07T23:22:54.393Z"
},
{
"id": 171,
"userId": 117,
"jobId": 51,
"status": "screening",
"coverLetter": "Venustas strues antea. Excepturi verbera vicissitudo. Suscipit crastinus architecto vindico cruciamentum capio crustulum defaeco.",
"appliedAt": "2026-04-28T03:09:20.844Z",
"lastUpdatedAt": "2026-05-12T06:49:08.779Z"
}
],
"meta": {
"page": 8,
"limit": 24,
"total": 389,
"totalPages": 17
},
"links": {
"self": "/api/v1/applications?page=8&limit=24",
"first": "/api/v1/applications?page=1&limit=24",
"last": "/api/v1/applications?page=17&limit=24",
"next": "/api/v1/applications?page=9&limit=24",
"prev": "/api/v1/applications?page=7&limit=24"
}
}