Activity #274
User #177 applied (interview) Job #134
4/17/2025, 12:10:17 PM
Overview
applications / #274
User #177 applied (interview) Job #134
4/17/2025, 12:10:17 PM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/274" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/274" ); 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/274"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/274"
)
application = res.json() Response
{
"id": 274,
"userId": 177,
"jobId": 134,
"status": "interview",
"coverLetter": "Video canto magnam. Minus cito strenuus minima subnecto doloremque. Caritas somnus cibo.",
"appliedAt": "2025-04-17T12:10:17.661Z",
"lastUpdatedAt": "2025-05-06T09:02:46.591Z"
}