Activity #3
User #2 applied (screening) Job #29
1/18/2026, 12:11:55 PM
Overview
applications / #3
User #2 applied (screening) Job #29
1/18/2026, 12:11:55 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/3" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/3" ); 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/3"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/3"
)
application = res.json() Response
{
"id": 3,
"userId": 2,
"jobId": 29,
"status": "screening",
"coverLetter": "Balbus verecundia eveniet vinculum cometes vestigium tollo fugiat turpis. Ustilo thorax adduco infit suadeo cursus. Universe vulnero centum pectus vicissitudo condico spargo decet.",
"appliedAt": "2026-01-18T12:11:55.448Z",
"lastUpdatedAt": "2026-02-10T21:31:17.656Z"
}