Activity #76
User #55 applied (accepted) Job #161
11/27/2025, 1:39:56 AM
Overview
applications / #76
User #55 applied (accepted) Job #161
11/27/2025, 1:39:56 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/76" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/76" ); 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/76"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/76"
)
application = res.json() Response
{
"id": 76,
"userId": 55,
"jobId": 161,
"status": "accepted",
"coverLetter": "Vulpes cubicularis truculenter. Aequitas debeo tempus adeptio aliqua. Angustus ipsum balbus sonitus capto curiositas vesica creo textus.",
"appliedAt": "2025-11-27T01:39:56.039Z",
"lastUpdatedAt": "2025-12-17T01:32:26.193Z"
}