Activity #12
User #8 applied (applied) Job #177
10/27/2025, 10:09:10 PM
Overview
applications / #12
User #8 applied (applied) Job #177
10/27/2025, 10:09:10 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/12" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/12" ); 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/12"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/12"
)
application = res.json() Response
{
"id": 12,
"userId": 8,
"jobId": 177,
"status": "applied",
"coverLetter": "Tunc acervus velit patruus arto talus. Timor utilis dapifer clarus volubilis tyrannus tenus. Curto thymbra vomica celebrer tondeo sui debeo ubi ustilo.\n\nUnde vetus copia audax degenero tabernus caecus. Vilitas pectus bene. Cubicularis attero nemo talus ea thymbra.",
"appliedAt": "2025-10-27T22:09:10.665Z",
"lastUpdatedAt": "2025-11-19T03:31:47.722Z"
}