Activity #268
User #174 applied (rejected) Job #37
8/20/2025, 12:53:13 AM
Overview
applications / #268
User #174 applied (rejected) Job #37
8/20/2025, 12:53:13 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/268" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/268" ); 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/268"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/268"
)
application = res.json() Response
{
"id": 268,
"userId": 174,
"jobId": 37,
"status": "rejected",
"coverLetter": "Veritas vulnus color virga ait admiratio unde. Torrens deduco deprecator vilis vitae. Claro ventosus vester decipio soluta texo territo accendo valde cura.\n\nTotidem provident vix aspernatur adinventitias torrens. Pel sustineo tabernus voluptates dens sordeo aduro basium terebro varius. Ager vivo vulariter libero torrens veritatis currus convoco super.",
"appliedAt": "2025-08-20T00:53:13.304Z",
"lastUpdatedAt": "2025-09-19T06:58:34.320Z"
}