Activity #63
User #42 applied (screening) Job #123
12/30/2025, 8:00:23 AM
Overview
applications / #63
User #42 applied (screening) Job #123
12/30/2025, 8:00:23 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/63" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/63" ); 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/63"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/63"
)
application = res.json() Response
{
"id": 63,
"userId": 42,
"jobId": 123,
"status": "screening",
"coverLetter": "Versus supplanto tenuis adsum tertius crastinus adversus denuo adicio vorax. Adulatio cohors quaerat amissio tero pax arx substantia tumultus curiositas. Valde abeo carpo aiunt adipiscor.\n\nAveho perferendis creptio desparatus. Aggero volo conculco. Veritatis succurro libero alter sulum tener excepturi.",
"appliedAt": "2025-12-30T08:00:23.626Z",
"lastUpdatedAt": "2026-02-19T04:17:36.360Z"
}