Activity #28
User #18 applied (accepted) Job #137
11/9/2025, 7:28:31 AM
Overview
applications / #28
User #18 applied (accepted) Job #137
11/9/2025, 7:28:31 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/28" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/28" ); 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/28"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/28"
)
application = res.json() Response
{
"id": 28,
"userId": 18,
"jobId": 137,
"status": "accepted",
"coverLetter": "Cetera pauper armarium conforto. Crinis confido cohors consuasor desolo complectus veniam. Commodo suggero solvo animus in congregatio tutis decor tenus bardus.",
"appliedAt": "2025-11-09T07:28:31.149Z",
"lastUpdatedAt": "2025-11-26T15:25:59.783Z"
}