Activity #138
User #94 applied (applied) Job #197
3/16/2026, 9:33:00 AM
Overview
applications / #138
User #94 applied (applied) Job #197
3/16/2026, 9:33:00 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/138" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/138" ); 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/138"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/138"
)
application = res.json() Response
{
"id": 138,
"userId": 94,
"jobId": 197,
"status": "applied",
"coverLetter": "Celebrer atrocitas quisquam. Casus laborum taceo abbas. Crur comminor allatus audentia ulciscor tondeo tremo crebro.",
"appliedAt": "2026-03-16T09:33:00.441Z",
"lastUpdatedAt": "2026-04-21T17:02:37.693Z"
}