Activity #53
User #37 applied (interview) Job #233
11/25/2024, 8:05:45 PM
Overview
applications / #53
User #37 applied (interview) Job #233
11/25/2024, 8:05:45 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/53" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/53" ); 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/53"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/53"
)
application = res.json() Response
{
"id": 53,
"userId": 37,
"jobId": 233,
"status": "interview",
"coverLetter": "Enim suppellex textilis supplanto urbs thymbra calcar. Aliqua solio adeptio vigor amplitudo viscus adstringo. Vinco quibusdam vos minus.",
"appliedAt": "2024-11-25T20:05:45.344Z",
"lastUpdatedAt": "2025-01-12T06:32:50.936Z"
}