Activity #238
User #157 applied (screening) Job #91
10/28/2025, 3:30:10 AM
Overview
applications / #238
User #157 applied (screening) Job #91
10/28/2025, 3:30:10 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/238" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/238" ); 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/238"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/238"
)
application = res.json() Response
{
"id": 238,
"userId": 157,
"jobId": 91,
"status": "screening",
"coverLetter": "Cohibeo vel creptio valens. Amissio desipio corrupti ultra calamitas vomica tracto supellex. Uter aperiam angelus.\n\nAeneus conscendo asper quibusdam. Sopor uredo quibusdam quis tandem incidunt audax. Dolorum eligendi vestrum aveho denuncio avarus venustas minus quae substantia.",
"appliedAt": "2025-10-28T03:30:10.122Z",
"lastUpdatedAt": "2025-12-10T03:50:23.816Z"
}