Activity #362
User #232 applied (applied) Job #205
10/24/2025, 8:41:23 AM
Overview
applications / #362
User #232 applied (applied) Job #205
10/24/2025, 8:41:23 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/362" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/362" ); 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/362"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/362"
)
application = res.json() Response
{
"id": 362,
"userId": 232,
"jobId": 205,
"status": "applied",
"coverLetter": "Altus confugo debitis modi comptus creta calculus. Coerceo barba minima apostolus utique quo voco. Cura tabgo totus turbo ademptio velum officia.",
"appliedAt": "2025-10-24T08:41:23.096Z",
"lastUpdatedAt": "2025-12-18T14:34:44.950Z"
}