Activity #388
User #249 applied (rejected) Job #43
5/1/2026, 6:52:31 PM
Overview
applications / #388
User #249 applied (rejected) Job #43
5/1/2026, 6:52:31 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/388" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/388" ); 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/388"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/388"
)
application = res.json() Response
{
"id": 388,
"userId": 249,
"jobId": 43,
"status": "rejected",
"coverLetter": "Corroboro colo decimus studio ultio cotidie aspicio. Adimpleo cras alii. Tardus charisma totidem comptus est creptio summopere suasoria.",
"appliedAt": "2026-05-01T18:52:31.968Z",
"lastUpdatedAt": "2026-05-07T04:30:07.955Z"
}