Activity #111
User #76 applied (screening) Job #54
4/6/2025, 12:14:27 AM
Overview
applications / #111
User #76 applied (screening) Job #54
4/6/2025, 12:14:27 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/111" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/111" ); 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/111"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/111"
)
application = res.json() Response
{
"id": 111,
"userId": 76,
"jobId": 54,
"status": "screening",
"coverLetter": "Tamdiu corrigo derideo sol similique crur accendo. Tyrannus umbra ante vita itaque summopere ambitus magni cognomen accommodo. Talio vesica stella vix.",
"appliedAt": "2025-04-06T00:14:27.928Z",
"lastUpdatedAt": "2025-05-05T11:46:37.904Z"
}