Activity #316
User #205 applied (offer) Job #196
12/4/2025, 12:53:35 AM
Overview
applications / #316
User #205 applied (offer) Job #196
12/4/2025, 12:53:35 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/316" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/316" ); 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/316"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/316"
)
application = res.json() Response
{
"id": 316,
"userId": 205,
"jobId": 196,
"status": "offer",
"coverLetter": "Curtus caries abscido crebro debeo. Amplus truculenter amor ceno vito adsum versus pel. Neque angulus vulgaris cubo templum vesper amplus.",
"appliedAt": "2025-12-04T00:53:35.587Z",
"lastUpdatedAt": "2025-12-07T22:41:03.482Z"
}