Activity #176
User #119 applied (withdrawn) Job #183
12/17/2025, 11:17:37 PM
Overview
applications / #176
User #119 applied (withdrawn) Job #183
12/17/2025, 11:17:37 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/176" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/176" ); 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/176"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/176"
)
application = res.json() Response
{
"id": 176,
"userId": 119,
"jobId": 183,
"status": "withdrawn",
"coverLetter": "Accusantium callide texo conscendo appello truculenter vinco veniam aestas. Sufficio validus vehemens bos comminor bonus tamen deripio comprehendo. Ab aranea custodia.\n\nUtique carbo depopulo. Vaco dolorum ullam deporto ver tenuis. Credo fuga cresco.",
"appliedAt": "2025-12-17T23:17:37.590Z",
"lastUpdatedAt": "2025-12-20T15:46:37.106Z"
}