Activity #46
User #32 applied (rejected) Job #84
6/7/2025, 2:31:40 AM
Overview
applications / #46
User #32 applied (rejected) Job #84
6/7/2025, 2:31:40 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/46" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/46" ); 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/46"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/46"
)
application = res.json() Response
{
"id": 46,
"userId": 32,
"jobId": 84,
"status": "rejected",
"coverLetter": "Quasi aeger sui acceptus ad arbor appositus. Charisma sint contego victus tutamen strenuus tantum. Decipio video vinco canto universe ipsum appello tenax uxor.",
"appliedAt": "2025-06-07T02:31:40.912Z",
"lastUpdatedAt": "2025-06-26T10:35:15.480Z"
}