Activity #30
User #19 applied (interview) Job #76
6/23/2025, 5:47:57 PM
Overview
applications / #30
User #19 applied (interview) Job #76
6/23/2025, 5:47:57 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/30" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/30" ); 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/30"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/30"
)
application = res.json() Response
{
"id": 30,
"userId": 19,
"jobId": 76,
"status": "interview",
"coverLetter": "Adflicto cariosus venia subnecto deduco utilis compono. Aspernatur cernuus patrocinor vicissitudo cauda. Deputo terga error.",
"appliedAt": "2025-06-23T17:47:57.006Z",
"lastUpdatedAt": "2025-08-09T11:02:55.203Z"
}