Activity #47
User #33 applied (applied) Job #222
10/13/2025, 11:46:25 PM
Overview
applications / #47
User #33 applied (applied) Job #222
10/13/2025, 11:46:25 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/47" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/47" ); 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/47"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/47"
)
application = res.json() Response
{
"id": 47,
"userId": 33,
"jobId": 222,
"status": "applied",
"coverLetter": "Collum conservo caelum tres socius teres defluo. Campana bestia patria vae conatus uberrime damnatio suscipio studio cruentus. Apud blandior coniuratio repellendus volo subnecto adsuesco vos maiores voro.\n\nDelinquo vae depulso avaritia aspernatur soleo clam collum campana. Comedo truculenter libero uberrime taceo. Sint celebrer reprehenderit tribuo nihil colo appono corpus.",
"appliedAt": "2025-10-13T23:46:25.454Z",
"lastUpdatedAt": "2025-11-28T21:55:44.441Z"
}