Activity #35
User #24 applied (applied) Job #227
2/26/2026, 2:30:29 PM
Overview
applications / #35
User #24 applied (applied) Job #227
2/26/2026, 2:30:29 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/35" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/35" ); 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/35"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/35"
)
application = res.json() Response
{
"id": 35,
"userId": 24,
"jobId": 227,
"status": "applied",
"coverLetter": "Somnus capitulus attero quibusdam admoneo bonus amplus. Undique cicuta vix. Caelum capitulus tenax teres cometes valens arcus pariatur.",
"appliedAt": "2026-02-26T14:30:29.276Z",
"lastUpdatedAt": "2026-03-13T23:47:52.326Z"
}