Activity #72
User #49 applied (applied) Job #109
5/21/2026, 7:58:30 AM
Overview
applications / #72
User #49 applied (applied) Job #109
5/21/2026, 7:58:30 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/72" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/72" ); 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/72"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/72"
)
application = res.json() Response
{
"id": 72,
"userId": 49,
"jobId": 109,
"status": "applied",
"coverLetter": "Somniculosus summopere porro alter caritas colligo patruus vis. Depraedor pauper taedium ultra cupiditate cura eos. Quis stipes vinum admoneo contabesco bardus.",
"appliedAt": "2026-05-21T07:58:30.494Z",
"lastUpdatedAt": "2026-05-21T17:15:05.546Z"
}