Activity #75
User #53 applied (applied) Job #200
2/28/2026, 8:55:07 AM
Overview
applications / #75
User #53 applied (applied) Job #200
2/28/2026, 8:55:07 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/75" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/75" ); 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/75"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/75"
)
application = res.json() Response
{
"id": 75,
"userId": 53,
"jobId": 200,
"status": "applied",
"coverLetter": "Earum vesica cauda solitudo appositus. Vespillo vorax usque delinquo cibo debeo compono terror. Ultio reprehenderit quo explicabo depereo apto trans totus.",
"appliedAt": "2026-02-28T08:55:07.951Z",
"lastUpdatedAt": "2026-04-21T23:21:44.767Z"
}