Activity #212
User #140 applied (screening) Job #75
3/11/2025, 4:04:56 AM
Overview
applications / #212
User #140 applied (screening) Job #75
3/11/2025, 4:04:56 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/212" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/212" ); 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/212"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/212"
)
application = res.json() Response
{
"id": 212,
"userId": 140,
"jobId": 75,
"status": "screening",
"coverLetter": "Tactus caste perferendis articulus. Appello deporto urbs usitas. Amplus vorago coaegresco natus doloribus repellendus collum repellendus nam.\n\nSubstantia adhaero repellendus cunae vester universe trans. Texo coerceo arca vivo. Cohors cuius validus conqueror assumenda adiuvo spero vos.",
"appliedAt": "2025-03-11T04:04:56.067Z",
"lastUpdatedAt": "2025-04-01T10:55:46.297Z"
}