Activity #147
User #105 applied (screening) Job #209
8/29/2025, 3:23:34 AM
Overview
applications / #147
User #105 applied (screening) Job #209
8/29/2025, 3:23:34 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/147" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/147" ); 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/147"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/147"
)
application = res.json() Response
{
"id": 147,
"userId": 105,
"jobId": 209,
"status": "screening",
"coverLetter": "Quaerat textor clamo ager vis tondeo. Cetera bestia pel utrimque illo pectus solio suasoria tepesco. Provident molestias audeo id denuncio aureus placeat ex.",
"appliedAt": "2025-08-29T03:23:34.715Z",
"lastUpdatedAt": "2025-09-18T21:28:15.578Z"
}