Activity #18
User #12 applied (applied) Job #183
4/22/2026, 5:39:03 AM
Overview
applications / #18
User #12 applied (applied) Job #183
4/22/2026, 5:39:03 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/18" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/18" ); 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/18"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/18"
)
application = res.json() Response
{
"id": 18,
"userId": 12,
"jobId": 183,
"status": "applied",
"coverLetter": "Aspicio vere adstringo astrum dolores. Amita coniecto pax. Basium carbo basium sed quod depono altus.",
"appliedAt": "2026-04-22T05:39:03.054Z",
"lastUpdatedAt": "2026-04-23T18:59:38.987Z"
}