Activity #304
User #200 applied (accepted) Job #42
12/19/2025, 10:26:38 PM
Overview
applications / #304
User #200 applied (accepted) Job #42
12/19/2025, 10:26:38 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/304" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/304" ); 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/304"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/304"
)
application = res.json() Response
{
"id": 304,
"userId": 200,
"jobId": 42,
"status": "accepted",
"coverLetter": "Anser decumbo texo civis vulariter coniecto ad tempore fugit. Dedico validus voluntarius verbera adhaero tremo. Tollo aequitas admitto aptus.",
"appliedAt": "2025-12-19T22:26:38.716Z",
"lastUpdatedAt": "2026-01-12T06:16:22.409Z"
}