Activity #197
User #134 applied (screening) Job #114
5/5/2026, 7:45:32 PM
Overview
applications / #197
User #134 applied (screening) Job #114
5/5/2026, 7:45:32 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/197" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/197" ); 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/197"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/197"
)
application = res.json() Response
{
"id": 197,
"userId": 134,
"jobId": 114,
"status": "screening",
"coverLetter": "Dicta tener tersus decens uterque deludo. Cribro tutis thymum celo tener sui sursum defaeco tergiversatio. Texo iure correptius tamdiu subiungo aliqua defaeco.",
"appliedAt": "2026-05-05T19:45:32.488Z",
"lastUpdatedAt": "2026-05-10T03:23:05.116Z"
}