Activity #295
User #194 applied (interview) Job #33
5/12/2026, 7:54:32 AM
Overview
applications / #295
User #194 applied (interview) Job #33
5/12/2026, 7:54:32 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/295" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/295" ); 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/295"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/295"
)
application = res.json() Response
{
"id": 295,
"userId": 194,
"jobId": 33,
"status": "interview",
"coverLetter": "Vobis terminatio apostolus vestigium. Bonus charisma tantillus apud debeo apto demum. Cohors amplexus stillicidium considero tergeo vallum cum.",
"appliedAt": "2026-05-12T07:54:32.611Z",
"lastUpdatedAt": "2026-05-19T05:07:11.265Z"
}