Activity #288
User #189 applied (interview) Job #11
4/17/2026, 11:17:18 AM
Overview
applications / #288
User #189 applied (interview) Job #11
4/17/2026, 11:17:18 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/288" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/288" ); 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/288"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/288"
)
application = res.json() Response
{
"id": 288,
"userId": 189,
"jobId": 11,
"status": "interview",
"coverLetter": "Tabernus clamo curia absque suus vilis argentum vehemens verbera. Paulatim tot aequitas tyrannus cogito. Stabilis aufero patrocinor succedo absum facere aureus cavus numquam.",
"appliedAt": "2026-04-17T11:17:18.606Z",
"lastUpdatedAt": "2026-05-11T00:39:03.528Z"
}