Activity #371
User #237 applied (screening) Job #87
1/13/2026, 11:15:12 PM
Overview
applications / #371
User #237 applied (screening) Job #87
1/13/2026, 11:15:12 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/371" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/371" ); 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/371"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/371"
)
application = res.json() Response
{
"id": 371,
"userId": 237,
"jobId": 87,
"status": "screening",
"coverLetter": "Altus capillus tubineus vulnero angulus perferendis cubicularis appono. In super ad valens suasoria stella cui. Omnis corrigo acidus benevolentia ipsam sopor.",
"appliedAt": "2026-01-13T23:15:12.071Z",
"lastUpdatedAt": "2026-01-27T03:20:24.563Z"
}