Activity #357
User #230 applied (screening) Job #76
1/3/2026, 8:17:52 AM
Overview
applications / #357
User #230 applied (screening) Job #76
1/3/2026, 8:17:52 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/357" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/357" ); 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/357"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/357"
)
application = res.json() Response
{
"id": 357,
"userId": 230,
"jobId": 76,
"status": "screening",
"coverLetter": "Capillus laborum caritas defluo decens. Decumbo apto viduo clibanus caelum vesper consequuntur animadverto ustulo cresco. Sub quisquam id patria virga vulnus audio veritatis crinis.",
"appliedAt": "2026-01-03T08:17:52.253Z",
"lastUpdatedAt": "2026-02-15T17:28:00.935Z"
}