Activity #135
User #93 applied (applied) Job #220
9/5/2025, 8:30:14 PM
Overview
applications / #135
User #93 applied (applied) Job #220
9/5/2025, 8:30:14 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/135" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/135" ); 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/135"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/135"
)
application = res.json() Response
{
"id": 135,
"userId": 93,
"jobId": 220,
"status": "applied",
"coverLetter": "Asporto bibo delibero deleniti. Concido volutabrum minima. Coniecto deleniti substantia aro coruscus.",
"appliedAt": "2025-09-05T20:30:14.082Z",
"lastUpdatedAt": "2025-09-29T00:32:48.233Z"
}