Activity #91
User #61 applied (rejected) Job #191
9/4/2025, 4:40:08 PM
Overview
applications / #91
User #61 applied (rejected) Job #191
9/4/2025, 4:40:08 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/91" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/91" ); 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/91"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/91"
)
application = res.json() Response
{
"id": 91,
"userId": 61,
"jobId": 191,
"status": "rejected",
"coverLetter": "Tot delicate tabella cultellus optio. Tergo ciminatio maxime tantillus suppellex ea derideo arbustum. Labore cotidie carus.\n\nVarietas colo corroboro. Cimentarius tot terreo vociferor. Patruus demergo adflicto nobis sollicito.",
"appliedAt": "2025-09-04T16:40:08.056Z",
"lastUpdatedAt": "2025-09-24T23:34:54.380Z"
}