Activity #327
User #211 applied (interview) Job #49
3/13/2026, 12:34:45 AM
Overview
applications / #327
User #211 applied (interview) Job #49
3/13/2026, 12:34:45 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/327" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/327" ); 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/327"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/327"
)
application = res.json() Response
{
"id": 327,
"userId": 211,
"jobId": 49,
"status": "interview",
"coverLetter": "Exercitationem adduco unus nisi aspicio consequuntur. Depromo abundans degenero velit coma desipio sono suffragium aggredior. Tempore deprecator arbustum.",
"appliedAt": "2026-03-13T00:34:45.346Z",
"lastUpdatedAt": "2026-04-25T03:40:46.929Z"
}