Activity #328
User #212 applied (screening) Job #237
5/19/2026, 1:47:04 PM
Overview
applications / #328
User #212 applied (screening) Job #237
5/19/2026, 1:47:04 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/328" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/328" ); 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/328"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/328"
)
application = res.json() Response
{
"id": 328,
"userId": 212,
"jobId": 237,
"status": "screening",
"coverLetter": "Casso tamquam cauda antea deludo. Statim desparatus umquam ago tam utilis. Vorago turbo accusantium suus a sumo vilicus.",
"appliedAt": "2026-05-19T13:47:04.374Z",
"lastUpdatedAt": "2026-05-20T15:22:10.359Z"
}