example-data.com
Menu
Browse docs and collections

Overview

applications / #129

Component variants

Medium
Small

User #89 applied (interview) Job #135 · 5/10/2026, 8:57:26 PM

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/applications/129" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/applications/129"
);
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/129"
);
const application = (await res.json()) as Application;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/applications/129"
)
application = res.json()

Response

{
  "id": 129,
  "userId": 89,
  "jobId": 135,
  "status": "interview",
  "coverLetter": "Cauda angustus aufero cibo cognomen compono benevolentia decerno valde demens. Arca coaegresco concedo depono angulus deporto. Depopulo tero arbustum vesica.",
  "appliedAt": "2026-05-10T20:57:26.025Z",
  "lastUpdatedAt": "2026-05-19T23:50:15.555Z"
}