Activity #44
User #32 applied (offer) Job #37
4/26/2026, 8:18:17 PM
Overview
applications / #44
User #32 applied (offer) Job #37
4/26/2026, 8:18:17 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/44" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/44" ); 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/44"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/44"
)
application = res.json() Response
{
"id": 44,
"userId": 32,
"jobId": 37,
"status": "offer",
"coverLetter": "Asporto expedita calculus consequuntur animus. Usitas tenax conscendo laudantium armarium tenuis barba arcesso. Vivo animi thermae verecundia vinculum.",
"appliedAt": "2026-04-26T20:18:17.303Z",
"lastUpdatedAt": "2026-05-03T04:34:40.520Z"
}