Activity #345
User #220 applied (applied) Job #112
4/26/2026, 11:00:39 PM
Overview
applications / #345
User #220 applied (applied) Job #112
4/26/2026, 11:00:39 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/345" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/345" ); 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/345"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/345"
)
application = res.json() Response
{
"id": 345,
"userId": 220,
"jobId": 112,
"status": "applied",
"coverLetter": "Comparo velut arcus. Caecus aegrotatio curiositas esse chirographum constans tempora. Cimentarius ipsam tui iste deinde desolo.",
"appliedAt": "2026-04-26T23:00:39.201Z",
"lastUpdatedAt": "2026-05-12T10:56:00.458Z"
}