Activity #263
User #172 applied (screening) Job #68
1/16/2026, 1:21:57 AM
Overview
applications / #263
User #172 applied (screening) Job #68
1/16/2026, 1:21:57 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/263" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/263" ); 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/263"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/263"
)
application = res.json() Response
{
"id": 263,
"userId": 172,
"jobId": 68,
"status": "screening",
"coverLetter": "Velit termes vulnus deludo. Corroboro allatus sum atque autus suffragium caritas carus. Aequus adflicto valens pecto.\n\nEa aggredior aegrus strues dolores suppono vespillo temptatio illum tumultus. Sophismata tantum decimus animadverto valens blanditiis. Attero atque ubi dicta degenero.",
"appliedAt": "2026-01-16T01:21:57.524Z",
"lastUpdatedAt": "2026-02-21T02:19:57.896Z"
}