Activity #292
User #192 applied (interview) Job #15
5/21/2026, 9:18:56 PM
Overview
applications / #292
User #192 applied (interview) Job #15
5/21/2026, 9:18:56 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/292" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/292" ); 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/292"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/292"
)
application = res.json() Response
{
"id": 292,
"userId": 192,
"jobId": 15,
"status": "interview",
"coverLetter": "Quo depopulo vulgivagus vehemens bos. Acquiro allatus contra clamo video custodia concedo super crapula. Vomer urbs uter via civis summa exercitationem.",
"appliedAt": "2026-05-21T21:18:56.464Z",
"lastUpdatedAt": "2026-05-21T23:03:18.322Z"
}