Activity #216
User #142 applied (screening) Job #192
2/5/2026, 3:28:52 AM
Overview
applications / #216
User #142 applied (screening) Job #192
2/5/2026, 3:28:52 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/216" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/216" ); 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/216"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/216"
)
application = res.json() Response
{
"id": 216,
"userId": 142,
"jobId": 192,
"status": "screening",
"coverLetter": "Coadunatio audentia sortitus cunae caute nam conicio. Labore totam attero deludo ea doloremque corona sumo. Defaeco creber caecus tum.",
"appliedAt": "2026-02-05T03:28:52.075Z",
"lastUpdatedAt": "2026-02-12T15:27:34.075Z"
}