Activity #254
User #166 applied (interview) Job #70
4/17/2026, 6:46:40 PM
Overview
applications / #254
User #166 applied (interview) Job #70
4/17/2026, 6:46:40 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/254" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/254" ); 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/254"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/254"
)
application = res.json() Response
{
"id": 254,
"userId": 166,
"jobId": 70,
"status": "interview",
"coverLetter": "Cilicium templum sopor bellicus amplitudo vomito. Alienus appono autem tandem demonstro deduco amiculum. Corrumpo tribuo magni caelestis curtus in caritas.",
"appliedAt": "2026-04-17T18:46:40.864Z",
"lastUpdatedAt": "2026-05-21T12:52:38.786Z"
}