Activity #181
User #123 applied (screening) Job #88
3/24/2026, 8:32:21 PM
Overview
applications / #181
User #123 applied (screening) Job #88
3/24/2026, 8:32:21 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/181" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/181" ); 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/181"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/181"
)
application = res.json() Response
{
"id": 181,
"userId": 123,
"jobId": 88,
"status": "screening",
"coverLetter": "Quas quos doloremque currus valeo allatus blandior infit accusator. Sono perferendis suasoria substantia volo conforto aer. Culpa amo urbs tactus conspergo ascit.",
"appliedAt": "2026-03-24T20:32:21.366Z",
"lastUpdatedAt": "2026-05-09T11:12:55.244Z"
}