Activity #350
User #226 applied (applied) Job #38
3/25/2025, 2:57:13 AM
Overview
applications / #350
User #226 applied (applied) Job #38
3/25/2025, 2:57:13 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/350" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/350" ); 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/350"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/350"
)
application = res.json() Response
{
"id": 350,
"userId": 226,
"jobId": 38,
"status": "applied",
"coverLetter": "Agnosco quae derelinquo deporto. Defetiscor quasi aut. Delibero sodalitas reprehenderit sono.",
"appliedAt": "2025-03-25T02:57:13.936Z",
"lastUpdatedAt": "2025-04-04T21:36:38.712Z"
}