Activity #220
User #143 applied (interview) Job #128
4/15/2026, 3:26:57 AM
Overview
applications / #220
User #143 applied (interview) Job #128
4/15/2026, 3:26:57 AM
View recordRequest
curl example
curl -sS \ "https://example-data.com/api/v1/applications/220" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/applications/220" ); 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/220"
);
const application = (await res.json()) as Application; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/applications/220"
)
application = res.json() Response
{
"id": 220,
"userId": 143,
"jobId": 128,
"status": "interview",
"coverLetter": "Amitto comedo speciosus thymum consequuntur. Arca certe civitas succedo aeternus desino aperte auctus quis tactus. Trucido ager asporto verus fugiat confido vestigium.\n\nSolvo cinis textilis ullus. Supra vinitor clarus comminor quis quasi utpote tabgo defero thorax. Demonstro constans unde auxilium ubi.",
"appliedAt": "2026-04-15T03:26:57.616Z",
"lastUpdatedAt": "2026-04-26T14:19:30.793Z"
}