Activity #174
User #118 applied (offer) Job #9
3/4/2026, 5:07:45 PM
Overview
applications / #174
User #118 applied (offer) Job #9
3/4/2026, 5:07:45 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/174" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/174" ); 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/174"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/174"
)
application = res.json() Response
{
"id": 174,
"userId": 118,
"jobId": 9,
"status": "offer",
"coverLetter": "Utor arguo supra compono dolorem. Voveo cibus magni velociter officia pauper depopulo una tenuis. Amoveo ea speculum corrigo volva cubo.\n\nAsper adflicto verumtamen adsum super solium cattus stillicidium antea depono. Vere argentum cunae. Dapifer maiores angelus stipes campana cultura.",
"appliedAt": "2026-03-04T17:07:45.904Z",
"lastUpdatedAt": "2026-04-15T19:31:51.915Z"
}