Activity #275
User #181 applied (withdrawn) Job #45
2/22/2025, 5:56:50 PM
Overview
applications / #275
User #181 applied (withdrawn) Job #45
2/22/2025, 5:56:50 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/275" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/275" ); 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/275"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/275"
)
application = res.json() Response
{
"id": 275,
"userId": 181,
"jobId": 45,
"status": "withdrawn",
"coverLetter": "Spoliatio vulgus demoror sunt curis. Teneo eaque numquam audax. Causa vorax volo tepidus talis expedita accommodo vigor.",
"appliedAt": "2025-02-22T17:56:50.416Z",
"lastUpdatedAt": "2025-04-07T13:30:35.822Z"
}