example-data.com
Menu
Browse docs and collections

Overview

applications / #387

Component variants

Medium
Small

User #248 applied (applied) Job #228 · 5/21/2026, 3:52:18 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 387,
  "userId": 248,
  "jobId": 228,
  "status": "applied",
  "coverLetter": "Summopere alienus caveo. Super adeptio neque totus tabula cogito arcus succedo. Tendo vix deprecator vereor theologus defendo.",
  "appliedAt": "2026-05-21T03:52:18.743Z",
  "lastUpdatedAt": "2026-05-21T21:56:24.662Z"
}