Activity #383
User #247 applied (screening) Job #76
11/20/2025, 4:43:00 PM
Overview
applications / #383
User #247 applied (screening) Job #76
11/20/2025, 4:43:00 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/383" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/383" ); 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/383"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/383"
)
application = res.json() Response
{
"id": 383,
"userId": 247,
"jobId": 76,
"status": "screening",
"coverLetter": "Voco venia amplexus voveo. Terreo adulescens vos subnecto. Ater demulceo cuius vinco ara vigor conforto absque.\n\nConspergo aurum deorsum vinco doloribus patruus tertius. Validus ustulo arca tempus tempore pariatur deprimo. Adimpleo thema perferendis adinventitias deludo sperno abutor.",
"appliedAt": "2025-11-20T16:43:00.229Z",
"lastUpdatedAt": "2026-01-10T02:14:59.828Z"
}