Activity #196
User #133 applied (withdrawn) Job #58
4/27/2026, 7:46:38 AM
Overview
applications / #196
User #133 applied (withdrawn) Job #58
4/27/2026, 7:46:38 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/196" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/196" ); 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/196"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/196"
)
application = res.json() Response
{
"id": 196,
"userId": 133,
"jobId": 58,
"status": "withdrawn",
"coverLetter": "Numquam terminatio vinco cunabula averto consequuntur. Tactus verus aliquam aperte. Sapiente vinum excepturi abutor arbustum conforto voluptatibus complectus tenax totidem.",
"appliedAt": "2026-04-27T07:46:38.551Z",
"lastUpdatedAt": "2026-05-17T12:23:18.949Z"
}