Activity #346
User #221 applied (withdrawn) Job #104
5/7/2026, 12:15:16 PM
Overview
applications / #346
User #221 applied (withdrawn) Job #104
5/7/2026, 12:15:16 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/346" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/346" ); 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/346"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/346"
)
application = res.json() Response
{
"id": 346,
"userId": 221,
"jobId": 104,
"status": "withdrawn",
"coverLetter": "Cotidie vomer eum cotidie utor cuius torqueo vesica defungo. Thesis debeo nihil somniculosus iusto calcar quas tyrannus. Tantum cuius optio.",
"appliedAt": "2026-05-07T12:15:16.717Z",
"lastUpdatedAt": "2026-05-11T21:18:45.734Z"
}