Activity #103
User #71 applied (screening) Job #75
12/17/2025, 4:55:00 PM
Overview
applications / #103
User #71 applied (screening) Job #75
12/17/2025, 4:55:00 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/103" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/103" ); 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/103"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/103"
)
application = res.json() Response
{
"id": 103,
"userId": 71,
"jobId": 75,
"status": "screening",
"coverLetter": "Soleo tandem cumque crebro laborum ustilo laborum sperno candidus. Conduco quas depulso calco. Adsidue vita calamitas sollers amplus nostrum repellat ocer.\n\nQuo bene concedo utilis atrox cruentus confido cruentus clarus theologus. Maiores aperiam suspendo denique adfero addo. Delibero peccatus adsidue.",
"appliedAt": "2025-12-17T16:55:00.094Z",
"lastUpdatedAt": "2025-12-29T02:24:21.511Z"
}