Activity #229
User #149 applied (interview) Job #143
4/2/2026, 10:14:45 AM
Overview
applications / #229
User #149 applied (interview) Job #143
4/2/2026, 10:14:45 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/229" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/229" ); 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/229"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/229"
)
application = res.json() Response
{
"id": 229,
"userId": 149,
"jobId": 143,
"status": "interview",
"coverLetter": "Sono cohors deinde calculus ipsum. Angelus amitto abbas calcar cornu virgo aptus atrocitas vero. Caput aqua terra tristis demo suppono ager voluptas ventosus.",
"appliedAt": "2026-04-02T10:14:45.762Z",
"lastUpdatedAt": "2026-04-05T13:40:38.549Z"
}