Activity #377
User #244 applied (screening) Job #161
10/27/2025, 4:13:58 PM
Overview
applications / #377
User #244 applied (screening) Job #161
10/27/2025, 4:13:58 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/377" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/377" ); 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/377"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/377"
)
application = res.json() Response
{
"id": 377,
"userId": 244,
"jobId": 161,
"status": "screening",
"coverLetter": "Aer subiungo ipsa copia custodia eveniet demitto dolore bos. Vos caput carcer vergo. Thorax ademptio spes denuncio decor suspendo concido talus absens quae.",
"appliedAt": "2025-10-27T16:13:58.503Z",
"lastUpdatedAt": "2025-11-03T03:31:48.434Z"
}