Activity #16
User #11 applied (screening) Job #8
10/4/2025, 2:58:13 AM
Overview
applications / #16
User #11 applied (screening) Job #8
10/4/2025, 2:58:13 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/16" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/16" ); 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/16"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/16"
)
application = res.json() Response
{
"id": 16,
"userId": 11,
"jobId": 8,
"status": "screening",
"coverLetter": "Anser versus testimonium vesco illo depromo nesciunt ulterius atrocitas delectatio. Beatus alius thymum caritas omnis ventito reprehenderit nam vivo. Blanditiis cerno dapifer amaritudo arcesso infit sto.",
"appliedAt": "2025-10-04T02:58:13.873Z",
"lastUpdatedAt": "2025-11-18T12:54:39.889Z"
}