Activity #59
User #40 applied (accepted) Job #111
5/20/2026, 3:06:09 PM
Overview
applications / #59
User #40 applied (accepted) Job #111
5/20/2026, 3:06:09 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/59" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/59" ); 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/59"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/59"
)
application = res.json() Response
{
"id": 59,
"userId": 40,
"jobId": 111,
"status": "accepted",
"coverLetter": "Soleo adduco charisma eos thorax celo. Vero delicate vulgus ad convoco voluptates vociferor adaugeo. Quisquam bonus tenax ea usus tremo terga demoror illo angelus.",
"appliedAt": "2026-05-20T15:06:09.344Z",
"lastUpdatedAt": "2026-05-21T19:33:12.033Z"
}