Activity #4
User #2 applied (screening) Job #93
3/25/2026, 2:26:01 AM
Overview
applications / #4
User #2 applied (screening) Job #93
3/25/2026, 2:26:01 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/4" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/4" ); 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/4"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/4"
)
application = res.json() Response
{
"id": 4,
"userId": 2,
"jobId": 93,
"status": "screening",
"coverLetter": "Repellat ventosus tametsi qui. Sonitus spiculum eaque aduro appono utrum atque. Solum tot decumbo crastinus reiciendis surgo deleo doloribus repellendus subnecto.",
"appliedAt": "2026-03-25T02:26:01.990Z",
"lastUpdatedAt": "2026-04-17T11:58:09.097Z"
}