Activity #256
User #167 applied (applied) Job #207
5/1/2025, 6:14:37 PM
Overview
applications / #256
User #167 applied (applied) Job #207
5/1/2025, 6:14:37 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/256" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/256" ); 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/256"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/256"
)
application = res.json() Response
{
"id": 256,
"userId": 167,
"jobId": 207,
"status": "applied",
"coverLetter": "Attero quis cervus avaritia. Dignissimos dens aeger repudiandae coma curriculum. Curriculum esse approbo comminor vir accusator.",
"appliedAt": "2025-05-01T18:14:37.084Z",
"lastUpdatedAt": "2025-05-23T02:35:33.435Z"
}