Activity #61
User #41 applied (interview) Job #22
12/27/2024, 6:55:09 AM
Overview
applications / #61
User #41 applied (interview) Job #22
12/27/2024, 6:55:09 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/61" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/61" ); 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/61"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/61"
)
application = res.json() Response
{
"id": 61,
"userId": 41,
"jobId": 22,
"status": "interview",
"coverLetter": "Caute peior ullam acer vorax sub vehemens desidero. Arceo combibo accusantium reprehenderit ascisco tabella. Doloremque similique denuo argentum canis chirographum dedecor curo.",
"appliedAt": "2024-12-27T06:55:09.679Z",
"lastUpdatedAt": "2025-02-05T13:14:55.735Z"
}