Activity #118
User #80 applied (interview) Job #44
4/13/2026, 11:15:08 AM
Overview
applications / #118
User #80 applied (interview) Job #44
4/13/2026, 11:15:08 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/118" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/118" ); 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/118"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/118"
)
application = res.json() Response
{
"id": 118,
"userId": 80,
"jobId": 44,
"status": "interview",
"coverLetter": "Ullam terebro aliquam summa tenuis thorax absconditus pax aro textor. Despecto benevolentia tabula candidus pecco tutis conqueror vicinus. Volva sui spero.",
"appliedAt": "2026-04-13T11:15:08.919Z",
"lastUpdatedAt": "2026-05-04T19:00:32.654Z"
}