Activity #185
User #125 applied (interview) Job #70
2/26/2026, 8:44:07 PM
Overview
applications / #185
User #125 applied (interview) Job #70
2/26/2026, 8:44:07 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/185" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/185" ); 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/185"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/185"
)
application = res.json() Response
{
"id": 185,
"userId": 125,
"jobId": 70,
"status": "interview",
"coverLetter": "Cavus perferendis usus chirographum. Curis adiuvo valens. Annus carpo sapiente quae.\n\nValde videlicet ducimus nesciunt harum deporto comburo. Libero ducimus bestia. Dapifer benevolentia textor aequus.",
"appliedAt": "2026-02-26T20:44:07.645Z",
"lastUpdatedAt": "2026-04-12T16:14:38.792Z"
}