Activity #124
User #85 applied (interview) Job #216
10/15/2025, 5:24:42 PM
Overview
applications / #124
User #85 applied (interview) Job #216
10/15/2025, 5:24:42 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/124" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/124" ); 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/124"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/124"
)
application = res.json() Response
{
"id": 124,
"userId": 85,
"jobId": 216,
"status": "interview",
"coverLetter": "Causa abundans adficio vereor triumphus cerno aptus voluptates vaco. Rem viduo accusamus uredo despecto. Clementia tertius accendo dignissimos.",
"appliedAt": "2025-10-15T17:24:42.869Z",
"lastUpdatedAt": "2025-10-18T07:02:40.926Z"
}