Activity #17
User #11 applied (withdrawn) Job #234
3/15/2026, 12:10:57 PM
Overview
applications / #17
User #11 applied (withdrawn) Job #234
3/15/2026, 12:10:57 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/17" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/17" ); 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/17"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/17"
)
application = res.json() Response
{
"id": 17,
"userId": 11,
"jobId": 234,
"status": "withdrawn",
"coverLetter": "Sopor spes quo speculum cado. Vespillo animadverto quos usitas velut nihil thesaurus vesper. Concedo voveo odio.",
"appliedAt": "2026-03-15T12:10:57.616Z",
"lastUpdatedAt": "2026-05-05T08:36:44.981Z"
}