Activity #315
User #205 applied (screening) Job #26
12/19/2025, 11:01:20 PM
Overview
applications / #315
User #205 applied (screening) Job #26
12/19/2025, 11:01:20 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/315" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/315" ); 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/315"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/315"
)
application = res.json() Response
{
"id": 315,
"userId": 205,
"jobId": 26,
"status": "screening",
"coverLetter": "Triduana depopulo molestiae depraedor beneficium volup. Absum pauper defungo beneficium cunabula uter talio. Uberrime audacia nam ventito delibero.\n\nSpargo suscipio versus aegre terror tripudio. Quos enim benigne porro termes abscido. Tenax umbra amor sui amicitia statua benigne.",
"appliedAt": "2025-12-19T23:01:20.976Z",
"lastUpdatedAt": "2026-01-07T09:28:12.856Z"
}