example-data.com
Menu
Browse docs and collections

Overview

applications / #234

Component variants

Medium
Small

User #154 applied (withdrawn) Job #77 · 12/14/2025, 3:36:41 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 234,
  "userId": 154,
  "jobId": 77,
  "status": "withdrawn",
  "coverLetter": "Tondeo audio aer cubicularis absum ventito deficio cras tolero conservo. Varietas aspernatur anser tergiversatio thymum vesica solum depereo taceo. Commodi campana vinum vesper beneficium utpote super uterque.",
  "appliedAt": "2025-12-14T03:36:41.445Z",
  "lastUpdatedAt": "2025-12-19T00:36:11.758Z"
}