Activity #290
User #190 applied (accepted) Job #166
7/3/2025, 11:36:01 PM
Overview
applications / #290
User #190 applied (accepted) Job #166
7/3/2025, 11:36:01 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/290" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/290" ); 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/290"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/290"
)
application = res.json() Response
{
"id": 290,
"userId": 190,
"jobId": 166,
"status": "accepted",
"coverLetter": "Caries velociter illo. Dolores arx temptatio thesaurus suppellex. Vado contigo patior sui adflicto ante tripudio concedo infit.",
"appliedAt": "2025-07-03T23:36:01.270Z",
"lastUpdatedAt": "2025-07-17T05:27:07.016Z"
}