Activity #296
User #194 applied (interview) Job #85
2/28/2026, 1:15:43 AM
Overview
applications / #296
User #194 applied (interview) Job #85
2/28/2026, 1:15:43 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/296" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/296" ); 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/296"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/296"
)
application = res.json() Response
{
"id": 296,
"userId": 194,
"jobId": 85,
"status": "interview",
"coverLetter": "Conforto cauda cresco excepturi maiores bardus vae amissio vestrum aggredior. Advoco cubitum vulnus. Vinco aduro creptio tertius.",
"appliedAt": "2026-02-28T01:15:43.530Z",
"lastUpdatedAt": "2026-03-08T19:10:27.466Z"
}