Activity #336
User #217 applied (applied) Job #146
1/24/2025, 9:40:38 AM
Overview
applications / #336
User #217 applied (applied) Job #146
1/24/2025, 9:40:38 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/336" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/336" ); 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/336"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/336"
)
application = res.json() Response
{
"id": 336,
"userId": 217,
"jobId": 146,
"status": "applied",
"coverLetter": "Id succurro contabesco. Conventus cauda arguo culpo. Ducimus sumo tandem thymbra numquam vomer corona.",
"appliedAt": "2025-01-24T09:40:38.055Z",
"lastUpdatedAt": "2025-03-22T13:48:34.711Z"
}