Activity #331
User #215 applied (screening) Job #60
3/8/2026, 9:32:56 AM
Overview
applications / #331
User #215 applied (screening) Job #60
3/8/2026, 9:32:56 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/331" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/331" ); 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/331"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/331"
)
application = res.json() Response
{
"id": 331,
"userId": 215,
"jobId": 60,
"status": "screening",
"coverLetter": "Asperiores coaegresco deorsum aegrus considero eligendi amissio adipiscor. Apparatus theologus chirographum nihil. Speciosus coadunatio dolores tibi terga acerbitas.",
"appliedAt": "2026-03-08T09:32:56.273Z",
"lastUpdatedAt": "2026-04-04T21:29:29.374Z"
}