Activity #264
User #172 applied (applied) Job #223
11/18/2025, 7:57:41 AM
Overview
applications / #264
User #172 applied (applied) Job #223
11/18/2025, 7:57:41 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/264" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/264" ); 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/264"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/264"
)
application = res.json() Response
{
"id": 264,
"userId": 172,
"jobId": 223,
"status": "applied",
"coverLetter": "Vado sophismata adeptio. Voro deporto caveo thymum laboriosam catena. Convoco valeo tero civitas vilis calco denego confugo cupiditas.",
"appliedAt": "2025-11-18T07:57:41.125Z",
"lastUpdatedAt": "2026-01-08T12:40:30.879Z"
}