Activity #15
User #11 applied (screening) Job #141
9/26/2025, 7:00:33 PM
Overview
applications / #15
User #11 applied (screening) Job #141
9/26/2025, 7:00:33 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/15" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/15" ); 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/15"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/15"
)
application = res.json() Response
{
"id": 15,
"userId": 11,
"jobId": 141,
"status": "screening",
"coverLetter": "Crastinus ascit ancilla sint totidem. Usque concedo demo conservo nisi tandem nemo coadunatio appello. Id textilis thesaurus accusamus tantillus.",
"appliedAt": "2025-09-26T19:00:33.544Z",
"lastUpdatedAt": "2025-10-18T17:35:12.541Z"
}