Activity #142
User #100 applied (screening) Job #4
11/5/2025, 11:13:06 PM
Overview
applications / #142
User #100 applied (screening) Job #4
11/5/2025, 11:13:06 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/142" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/142" ); 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/142"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/142"
)
application = res.json() Response
{
"id": 142,
"userId": 100,
"jobId": 4,
"status": "screening",
"coverLetter": "Casus non solus. Copiose vindico valens appono aestivus creber aufero. Vinculum avarus incidunt currus tamquam congregatio urbs.",
"appliedAt": "2025-11-05T23:13:06.751Z",
"lastUpdatedAt": "2025-12-20T15:08:29.474Z"
}