Activity #42
User #30 applied (screening) Job #96
10/23/2025, 5:48:57 AM
Overview
applications / #42
User #30 applied (screening) Job #96
10/23/2025, 5:48:57 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/42" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/42" ); 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/42"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/42"
)
application = res.json() Response
{
"id": 42,
"userId": 30,
"jobId": 96,
"status": "screening",
"coverLetter": "Copia crastinus sit ancilla. Tempus dolores quam copia crustulum voveo cuius porro apto. Causa deporto ut facere vehemens talus vomer.",
"appliedAt": "2025-10-23T05:48:57.165Z",
"lastUpdatedAt": "2025-11-14T14:00:45.543Z"
}