Activity #106
User #74 applied (accepted) Job #71
10/15/2025, 9:59:13 AM
Overview
applications / #106
User #74 applied (accepted) Job #71
10/15/2025, 9:59:13 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/106" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/106" ); 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/106"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/106"
)
application = res.json() Response
{
"id": 106,
"userId": 74,
"jobId": 71,
"status": "accepted",
"coverLetter": "Sto recusandae commemoro pecto. Beatae vomer doloremque deputo. Celer somniculosus patrocinor patrocinor cuius conspergo.",
"appliedAt": "2025-10-15T09:59:13.415Z",
"lastUpdatedAt": "2025-11-18T12:36:15.336Z"
}