Activity #58
User #39 applied (offer) Job #13
4/4/2026, 10:43:51 PM
Overview
applications / #58
User #39 applied (offer) Job #13
4/4/2026, 10:43:51 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/58" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/58" ); 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/58"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/58"
)
application = res.json() Response
{
"id": 58,
"userId": 39,
"jobId": 13,
"status": "offer",
"coverLetter": "Acervus crastinus volva tametsi tener adeptio. Versus illo assumenda culpa tardus vita tutis corpus sopor. Aegrus attero adaugeo.\n\nCentum omnis beatus angulus sollers aegre laudantium. Cohors rerum termes vigor tres textus desidero. Varietas tenus conturbo.",
"appliedAt": "2026-04-04T22:43:51.521Z",
"lastUpdatedAt": "2026-04-21T06:50:09.439Z"
}