example-data.com
Menu
Browse docs and collections

Overview

applications / #182

Component variants

Medium
Small

User #124 applied (applied) Job #172 · 4/10/2026, 12:27:41 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 182,
  "userId": 124,
  "jobId": 172,
  "status": "applied",
  "coverLetter": "Est decor absens. Arbustum amor at tero. Adsidue totus aeternus tui.",
  "appliedAt": "2026-04-10T00:27:41.085Z",
  "lastUpdatedAt": "2026-04-30T02:52:53.022Z"
}