Activity #55
User #38 applied (applied) Job #229
4/22/2026, 10:38:04 AM
Overview
applications / #55
User #38 applied (applied) Job #229
4/22/2026, 10:38:04 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/55" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/55" ); 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/55"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/55"
)
application = res.json() Response
{
"id": 55,
"userId": 38,
"jobId": 229,
"status": "applied",
"coverLetter": "Fugit vinum supellex ait bibo vulticulus vox demens aro. Cursus desolo validus tandem xiphias solio unde acsi voluptatibus compello. Bestia aer cogito.\n\nPatrocinor creator tener abscido delego accedo. Tertius spes crebro tergiversatio. Ad annus pecto aspicio sub centum tracto color.",
"appliedAt": "2026-04-22T10:38:04.636Z",
"lastUpdatedAt": "2026-05-17T17:50:54.220Z"
}