Activity #94
User #62 applied (applied) Job #140
4/22/2026, 2:14:57 PM
Overview
applications / #94
User #62 applied (applied) Job #140
4/22/2026, 2:14:57 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/94" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/94" ); 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/94"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/94"
)
application = res.json() Response
{
"id": 94,
"userId": 62,
"jobId": 140,
"status": "applied",
"coverLetter": "Autus defero abbas calculus crebro tondeo ante degero. Averto ars thesis. Ciminatio truculenter sol thesis defaeco paens color temptatio.",
"appliedAt": "2026-04-22T14:14:57.758Z",
"lastUpdatedAt": "2026-05-17T08:33:48.552Z"
}