Activity #318
User #206 applied (interview) Job #116
4/26/2026, 9:34:19 AM
Overview
applications / #318
User #206 applied (interview) Job #116
4/26/2026, 9:34:19 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/318" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/318" ); 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/318"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/318"
)
application = res.json() Response
{
"id": 318,
"userId": 206,
"jobId": 116,
"status": "interview",
"coverLetter": "Cibo cogo consectetur. Alii arbor titulus ad cuppedia adduco. Praesentium auctor tantum cubicularis.",
"appliedAt": "2026-04-26T09:34:19.450Z",
"lastUpdatedAt": "2026-05-14T14:03:37.663Z"
}