Activity #125
User #86 applied (screening) Job #201
4/15/2026, 2:13:19 PM
Overview
applications / #125
User #86 applied (screening) Job #201
4/15/2026, 2:13:19 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/125" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/125" ); const application = 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 } from "./types/applications";
const res = await fetch(
"https://example-data.com/api/v1/applications/125"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/125"
)
application = res.json() Response
{
"id": 125,
"userId": 86,
"jobId": 201,
"status": "screening",
"coverLetter": "Autus claudeo vae deinde animadverto umbra. Ulciscor subito aeternus crudelis peccatus alioqui. Utor censura coerceo atqui campana.\n\nDefendo brevis clarus cogito vox suffoco verus tibi adflicto aliquid. Vinitor excepturi verbum sonitus. Subnecto arbustum capillus illo spectaculum.",
"appliedAt": "2026-04-15T14:13:19.591Z",
"lastUpdatedAt": "2026-05-03T13:31:42.753Z"
}