Activity #338
User #218 applied (offer) Job #127
2/10/2026, 1:54:49 PM
Overview
applications / #338
User #218 applied (offer) Job #127
2/10/2026, 1:54:49 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/338" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/338" ); 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/338"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/338"
)
application = res.json() Response
{
"id": 338,
"userId": 218,
"jobId": 127,
"status": "offer",
"coverLetter": "Tristis via color defetiscor texo curis textus appositus stips. Cado depromo tempus vilis sapiente. Desino pauper neque utrum ustilo curriculum summa umbra adhaero.",
"appliedAt": "2026-02-10T13:54:49.410Z",
"lastUpdatedAt": "2026-02-14T13:02:39.855Z"
}