Activity #195
User #132 applied (applied) Job #111
5/21/2026, 1:19:31 AM
Overview
applications / #195
User #132 applied (applied) Job #111
5/21/2026, 1:19:31 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/195" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/195" ); 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/195"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/195"
)
application = res.json() Response
{
"id": 195,
"userId": 132,
"jobId": 111,
"status": "applied",
"coverLetter": "Demulceo demulceo coniuratio adversus subseco autus ventus. Deserunt appositus tam creator terga harum suppellex advoco corrupti. Explicabo basium non tardus animadverto.",
"appliedAt": "2026-05-21T01:19:31.287Z",
"lastUpdatedAt": "2026-05-21T05:48:27.262Z"
}