Activity #218
User #142 applied (applied) Job #53
4/24/2025, 11:59:42 AM
Overview
applications / #218
User #142 applied (applied) Job #53
4/24/2025, 11:59:42 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/218" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/218" ); 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/218"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/218"
)
application = res.json() Response
{
"id": 218,
"userId": 142,
"jobId": 53,
"status": "applied",
"coverLetter": "Adiuvo tamquam adflicto trepide utilis currus arto. Acceptus capitulus cunabula vigor aggero similique dolore cruentus vesica. Adflicto fuga nesciunt delego tricesimus despecto decor.",
"appliedAt": "2025-04-24T11:59:42.597Z",
"lastUpdatedAt": "2025-04-25T03:29:57.651Z"
}