example-data.com
Menu
Browse docs and collections

Overview

applications / #110

Component variants

Medium
Small

User #75 applied (withdrawn) Job #115 · 5/21/2026, 7:07:17 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 110,
  "userId": 75,
  "jobId": 115,
  "status": "withdrawn",
  "coverLetter": "Thymum auctus dolore umquam theologus inflammatio virgo conqueror confido terror. Cognomen alii altus cunae theatrum architecto. Calcar adhaero terebro vergo vitiosus ventito.\n\nDegusto cura vomito barba tergeo cupiditas umbra. Debeo amoveo causa torqueo constans animus deleo vomer porro. Vitae decumbo carbo currus vox somnus vito talio adnuo ars.",
  "appliedAt": "2026-05-21T19:07:17.528Z",
  "lastUpdatedAt": "2026-05-21T22:00:32.264Z"
}