example-data.com
Menu
Browse docs and collections

Overview

applications / #333

Component variants

Medium
Small

User #216 applied (rejected) Job #18 · 4/1/2026, 4:04:23 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 333,
  "userId": 216,
  "jobId": 18,
  "status": "rejected",
  "coverLetter": "Consectetur suscipio bibo volup ascisco tollo. Illo deduco delego beneficium adhaero amita concedo virgo. Debeo atqui culpo iste hic uredo.",
  "appliedAt": "2026-04-01T16:04:23.398Z",
  "lastUpdatedAt": "2026-04-22T03:53:46.272Z"
}