Activity #162
User #112 applied (offer) Job #41
4/13/2026, 12:43:53 PM
Overview
applications / #162
User #112 applied (offer) Job #41
4/13/2026, 12:43:53 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/162" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/162" ); 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/162"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/162"
)
application = res.json() Response
{
"id": 162,
"userId": 112,
"jobId": 41,
"status": "offer",
"coverLetter": "Teneo claro tutamen denego tollo crinis. Cultellus colo toties comis demo crux demo. Amet super minima vesica sordeo volva cunabula arguo.",
"appliedAt": "2026-04-13T12:43:53.759Z",
"lastUpdatedAt": "2026-04-16T07:41:02.865Z"
}