Activity #244
User #159 applied (screening) Job #125
12/1/2025, 6:21:58 PM
Overview
applications / #244
User #159 applied (screening) Job #125
12/1/2025, 6:21:58 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/244" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/244" ); 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/244"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/244"
)
application = res.json() Response
{
"id": 244,
"userId": 159,
"jobId": 125,
"status": "screening",
"coverLetter": "Cernuus blandior titulus beneficium. Sui corporis blandior. Laudantium deripio vox ab pectus comparo defendo ascisco.",
"appliedAt": "2025-12-01T18:21:58.916Z",
"lastUpdatedAt": "2026-01-24T10:43:52.488Z"
}