Activity #98
User #64 applied (applied) Job #240
2/11/2026, 4:12:31 PM
Overview
applications / #98
User #64 applied (applied) Job #240
2/11/2026, 4:12:31 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/98" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/98" ); 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/98"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/98"
)
application = res.json() Response
{
"id": 98,
"userId": 64,
"jobId": 240,
"status": "applied",
"coverLetter": "Acer statim adipisci argumentum tepesco pel vociferor aliqua nam. Vindico viscus depono thymbra. Acerbitas antepono collum.",
"appliedAt": "2026-02-11T16:12:31.616Z",
"lastUpdatedAt": "2026-03-18T07:39:13.449Z"
}