Activity #132
User #90 applied (interview) Job #101
10/14/2025, 7:32:42 PM
Overview
applications / #132
User #90 applied (interview) Job #101
10/14/2025, 7:32:42 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/132" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/132" ); 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/132"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/132"
)
application = res.json() Response
{
"id": 132,
"userId": 90,
"jobId": 101,
"status": "interview",
"coverLetter": "Demo tener curto fuga viscus ara attonbitus curiositas conspergo brevis. Certe terra abeo coepi confido cultellus tabula. Commodi sub alius porro tabesco conor.",
"appliedAt": "2025-10-14T19:32:42.253Z",
"lastUpdatedAt": "2025-11-10T02:20:56.001Z"
}