Activity #45
User #32 applied (screening) Job #8
11/19/2025, 4:51:58 PM
Overview
applications / #45
User #32 applied (screening) Job #8
11/19/2025, 4:51:58 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/45" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/45" ); 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/45"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/45"
)
application = res.json() Response
{
"id": 45,
"userId": 32,
"jobId": 8,
"status": "screening",
"coverLetter": "Vel annus suppellex accusantium alius delego antea. Appono facilis illo vulticulus vomica capillus benevolentia abeo viridis volaticus. Desolo vitium suus derelinquo vero sophismata aspicio abbas tres minima.",
"appliedAt": "2025-11-19T16:51:58.436Z",
"lastUpdatedAt": "2025-12-05T14:14:30.452Z"
}