Activity #201
User #135 applied (screening) Job #165
3/13/2026, 10:27:02 AM
Overview
applications / #201
User #135 applied (screening) Job #165
3/13/2026, 10:27:02 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/201" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/201" ); 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/201"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/201"
)
application = res.json() Response
{
"id": 201,
"userId": 135,
"jobId": 165,
"status": "screening",
"coverLetter": "Aestivus nemo comptus ascit utrum timidus concedo surgo. Demulceo arx atqui addo suus illo teneo aegre suppono commodo. Alienus aggero sonitus maiores alter.",
"appliedAt": "2026-03-13T10:27:02.670Z",
"lastUpdatedAt": "2026-04-27T13:45:44.580Z"
}