Activity #25
User #16 applied (screening) Job #35
1/10/2026, 2:57:43 PM
Overview
applications / #25
User #16 applied (screening) Job #35
1/10/2026, 2:57:43 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/25" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/25" ); 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/25"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/25"
)
application = res.json() Response
{
"id": 25,
"userId": 16,
"jobId": 35,
"status": "screening",
"coverLetter": "Quisquam succurro cupressus quod desolo quasi ager caterva. Demens altus usitas caries adeo. Comis totus adsuesco varietas defungo defleo deputo.\n\nTenuis cur repellat soluta conventus verbum apparatus sollers quisquam vitae. Atqui titulus delego abeo utrum. Undique labore aestivus officiis volo vado.",
"appliedAt": "2026-01-10T14:57:43.806Z",
"lastUpdatedAt": "2026-03-02T09:02:32.584Z"
}