Activity #332
User #215 applied (applied) Job #19
10/27/2025, 3:35:04 AM
Overview
applications / #332
User #215 applied (applied) Job #19
10/27/2025, 3:35:04 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/332" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/332" ); 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/332"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/332"
)
application = res.json() Response
{
"id": 332,
"userId": 215,
"jobId": 19,
"status": "applied",
"coverLetter": "Custodia minima cohors nobis. Circumvenio concido tamen eum soluta creo charisma voco. Cura depereo vilis.",
"appliedAt": "2025-10-27T03:35:04.053Z",
"lastUpdatedAt": "2025-11-26T10:02:33.223Z"
}