Activity #92
User #62 applied (interview) Job #182
1/20/2026, 1:35:36 AM
Overview
applications / #92
User #62 applied (interview) Job #182
1/20/2026, 1:35:36 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/92" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/92" ); 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/92"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/92"
)
application = res.json() Response
{
"id": 92,
"userId": 62,
"jobId": 182,
"status": "interview",
"coverLetter": "Currus laudantium ver tempore truculenter asporto curo adficio cupiditas. Subiungo odio delectatio arcus degusto rerum excepturi comis socius confero. Taceo statim unus numquam suppellex.",
"appliedAt": "2026-01-20T01:35:36.069Z",
"lastUpdatedAt": "2026-03-19T10:55:38.882Z"
}