Activity #363
User #233 applied (interview) Job #173
1/17/2026, 9:26:30 PM
Overview
applications / #363
User #233 applied (interview) Job #173
1/17/2026, 9:26:30 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/363" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/363" ); 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/363"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/363"
)
application = res.json() Response
{
"id": 363,
"userId": 233,
"jobId": 173,
"status": "interview",
"coverLetter": "Ter vorago cedo. Sit est bellum sui vesper absens accusantium. Virga nihil defungo verto tenus arcus.",
"appliedAt": "2026-01-17T21:26:30.252Z",
"lastUpdatedAt": "2026-03-06T00:00:20.530Z"
}