Activity #121
User #82 applied (withdrawn) Job #200
10/7/2025, 4:17:44 PM
Overview
applications / #121
User #82 applied (withdrawn) Job #200
10/7/2025, 4:17:44 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/121" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/121" ); 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/121"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/121"
)
application = res.json() Response
{
"id": 121,
"userId": 82,
"jobId": 200,
"status": "withdrawn",
"coverLetter": "Vereor subnecto benigne ventosus vilis suspendo. Odio deserunt beatus ulciscor ratione. Carpo cupiditate aestas sophismata administratio.",
"appliedAt": "2025-10-07T16:17:44.003Z",
"lastUpdatedAt": "2025-11-08T13:17:21.867Z"
}