Activity #153
User #108 applied (applied) Job #14
4/6/2025, 2:01:02 AM
Overview
applications / #153
User #108 applied (applied) Job #14
4/6/2025, 2:01:02 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/153" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/153" ); 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/153"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/153"
)
application = res.json() Response
{
"id": 153,
"userId": 108,
"jobId": 14,
"status": "applied",
"coverLetter": "Patruus ulterius commemoro vis totus calculus dignissimos armarium vita. Caterva coaegresco volva expedita terror cunctatio ater. Totidem appello cuppedia tepidus inflammatio acsi undique undique.",
"appliedAt": "2025-04-06T02:01:02.872Z",
"lastUpdatedAt": "2025-05-11T02:58:39.380Z"
}