example-data.com
Menu
Browse docs and collections

Overview

applications / #74

Component variants

Medium
Small

User #52 applied (offer) Job #35 · 4/12/2026, 7:21:21 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 74,
  "userId": 52,
  "jobId": 35,
  "status": "offer",
  "coverLetter": "Dolorem ubi coepi virtus crebro. Comedo arto attollo minus. Texo soluta odio audentia triduana in pecco.\n\nAgo velociter cenaculum reprehenderit aufero amissio victus. Totam bos cresco audentia. Congregatio asporto cribro maxime sursum talio tabula.",
  "appliedAt": "2026-04-12T19:21:21.287Z",
  "lastUpdatedAt": "2026-04-26T07:42:38.760Z"
}