Activity #356
User #229 applied (withdrawn) Job #138
12/8/2025, 10:46:42 PM
Overview
applications / #356
User #229 applied (withdrawn) Job #138
12/8/2025, 10:46:42 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/356" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/356" ); 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/356"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/356"
)
application = res.json() Response
{
"id": 356,
"userId": 229,
"jobId": 138,
"status": "withdrawn",
"coverLetter": "Demens celer cunctatio tenax desidero alter vulgivagus aeger vinculum clamo. Cena coaegresco carbo tremo. Contra depopulo curia ars.",
"appliedAt": "2025-12-08T22:46:42.456Z",
"lastUpdatedAt": "2025-12-09T13:42:09.442Z"
}