Activity #82
User #58 applied (rejected) Job #204
5/6/2026, 5:06:14 AM
Overview
applications / #82
User #58 applied (rejected) Job #204
5/6/2026, 5:06:14 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/82" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/82" ); 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/82"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/82"
)
application = res.json() Response
{
"id": 82,
"userId": 58,
"jobId": 204,
"status": "rejected",
"coverLetter": "Utique ciminatio cultellus campana. Virgo dicta ratione molestiae crapula. Tactus animi optio.",
"appliedAt": "2026-05-06T05:06:14.443Z",
"lastUpdatedAt": "2026-05-16T19:09:00.951Z"
}