Activity #272
User #176 applied (rejected) Job #126
1/10/2026, 4:22:49 AM
Overview
applications / #272
User #176 applied (rejected) Job #126
1/10/2026, 4:22:49 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/272" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/272" ); 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/272"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/272"
)
application = res.json() Response
{
"id": 272,
"userId": 176,
"jobId": 126,
"status": "rejected",
"coverLetter": "Thymum concedo aufero. Officiis absque allatus suscipio vilicus absque. Ipsa asper delectatio.\n\nVarietas odit talus cauda vociferor curriculum. Abstergo creator abscido volo. Cicuta trado triduana ascit abstergo agnosco conservo succurro.",
"appliedAt": "2026-01-10T04:22:49.631Z",
"lastUpdatedAt": "2026-03-10T12:41:38.747Z"
}