Activity #1
User #1 applied (screening) Job #98
5/5/2026, 7:31:00 PM
Overview
applications / #1
User #1 applied (screening) Job #98
5/5/2026, 7:31:00 PM
View recordRequest
curl example
curl -sS \
"https://example-data.com/api/v1/applications/1" \
-H "Accept: application/json"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/applications/1"
);
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/1"
);
const application = (await res.json()) as Application;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/1"
)
application = res.json()
Response
{
"id": 1,
"userId": 1,
"jobId": 98,
"status": "screening",
"coverLetter": "Ager beatus harum deleo truculenter. Aggero quasi suppellex talus sublime subiungo alo solium cariosus. Ullam cupiditate spes vito cohaero virtus tubineus sequi.\n\nArguo villa deludo depraedor auditor voluptatum quia audacia verecundia. Cohaero tempora alienus maiores sum colo excepturi. Vos callide solio.",
"appliedAt": "2026-05-05T19:31:00.375Z",
"lastUpdatedAt": "2026-05-17T13:03:50.974Z"
}