Activity #361
User #232 applied (offer) Job #195
3/16/2025, 12:40:50 AM
Overview
applications / #361
User #232 applied (offer) Job #195
3/16/2025, 12:40:50 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/361" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/361" ); 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/361"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/361"
)
application = res.json() Response
{
"id": 361,
"userId": 232,
"jobId": 195,
"status": "offer",
"coverLetter": "Spero nisi suppono alveus. Sollicito veritatis arbitro comburo dolorum commemoro tunc. Vulgaris supellex clibanus.\n\nVinum aegrotatio ustulo deputo tergeo thymum thesis. Audentia tempore sub. Dedecor demergo reprehenderit bis.",
"appliedAt": "2025-03-16T00:40:50.406Z",
"lastUpdatedAt": "2025-05-06T11:52:59.953Z"
}