Activity #262
User #172 applied (withdrawn) Job #10
5/7/2026, 8:08:28 AM
Overview
applications / #262
User #172 applied (withdrawn) Job #10
5/7/2026, 8:08:28 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/262" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/262" ); 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/262"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/262"
)
application = res.json() Response
{
"id": 262,
"userId": 172,
"jobId": 10,
"status": "withdrawn",
"coverLetter": "Quaerat antepono cum assentator. Officia aedificium id audentia aer venustas suffoco. Defendo ab sopor tergiversatio aeneus vesper.",
"appliedAt": "2026-05-07T08:08:28.639Z",
"lastUpdatedAt": "2026-05-16T02:17:22.840Z"
}