Activity #310
User #203 applied (accepted) Job #175
12/9/2025, 6:43:56 PM
Overview
applications / #310
User #203 applied (accepted) Job #175
12/9/2025, 6:43:56 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/310" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/310" ); 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/310"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/310"
)
application = res.json() Response
{
"id": 310,
"userId": 203,
"jobId": 175,
"status": "accepted",
"coverLetter": "Suggero cimentarius est veniam administratio. Adamo ancilla concido soleo coruscus tot nostrum templum apud. Soluta ciminatio trucido avarus sperno cognomen crustulum.",
"appliedAt": "2025-12-09T18:43:56.334Z",
"lastUpdatedAt": "2026-01-17T15:07:55.169Z"
}