Activity #267
User #173 applied (screening) Job #216
1/4/2026, 11:46:51 AM
Overview
applications / #267
User #173 applied (screening) Job #216
1/4/2026, 11:46:51 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/267" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/267" ); 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/267"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/267"
)
application = res.json() Response
{
"id": 267,
"userId": 173,
"jobId": 216,
"status": "screening",
"coverLetter": "Auctor tergeo delego minus corona bibo aperte cohors corpus conforto. Cursus ciminatio abeo vestrum terebro studio caput minus vinco ancilla. Nulla traho tero conqueror.",
"appliedAt": "2026-01-04T11:46:51.457Z",
"lastUpdatedAt": "2026-02-18T20:05:08.839Z"
}