Activity #133
User #90 applied (rejected) Job #146
8/13/2025, 5:07:10 PM
Overview
applications / #133
User #90 applied (rejected) Job #146
8/13/2025, 5:07:10 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/133" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/133" ); 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/133"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/133"
)
application = res.json() Response
{
"id": 133,
"userId": 90,
"jobId": 146,
"status": "rejected",
"coverLetter": "Termes dedico vilis. Urbanus timor curatio arbitro confero comminor voco surgo. Ratione auditor terga magnam temporibus.\n\nAntepono tutis a. Suspendo vado aeger. Subnecto culpo tersus torqueo demonstro culpo ullam veniam comes.",
"appliedAt": "2025-08-13T17:07:10.411Z",
"lastUpdatedAt": "2025-09-19T05:31:23.640Z"
}