Activity #283
User #187 applied (applied) Job #210
2/4/2025, 8:53:32 PM
Overview
applications / #283
User #187 applied (applied) Job #210
2/4/2025, 8:53:32 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/283" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/283" ); 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/283"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/283"
)
application = res.json() Response
{
"id": 283,
"userId": 187,
"jobId": 210,
"status": "applied",
"coverLetter": "Abundans virga tenax atrox temeritas atrox sumptus amita. Subiungo adulatio corona carcer ver eligendi cohibeo animadverto uberrime. Aer textilis bene id denuo assentator vacuus taedium enim ars.",
"appliedAt": "2025-02-04T20:53:32.230Z",
"lastUpdatedAt": "2025-03-19T22:24:14.460Z"
}