Activity #232
User #154 applied (screening) Job #89
10/20/2025, 12:52:48 AM
Overview
applications / #232
User #154 applied (screening) Job #89
10/20/2025, 12:52:48 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/232" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/232" ); 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/232"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/232"
)
application = res.json() Response
{
"id": 232,
"userId": 154,
"jobId": 89,
"status": "screening",
"coverLetter": "Suffoco cena adflicto degenero tergiversatio altus cursim adamo deleo somnus. Sperno bardus contra. Nisi surculus thorax adiuvo sperno amaritudo adimpleo.\n\nSuffragium voco arceo ante agnosco repellendus compono bene. Suasoria vicissitudo altus pecco. Cur deludo vaco balbus verbera celo ulciscor confido.",
"appliedAt": "2025-10-20T00:52:48.241Z",
"lastUpdatedAt": "2025-10-27T23:33:33.700Z"
}