example-data.com
Menu
Browse docs and collections

Overview

applications / #108

Component variants

Medium
Small

User #74 applied (interview) Job #26 · 5/5/2026, 6:09:55 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 108,
  "userId": 74,
  "jobId": 26,
  "status": "interview",
  "coverLetter": "Modi bene a doloribus ipsum cibus bellum ventito ventus. Desparatus talis damno delinquo titulus. Verus vindico placeat saepe.",
  "appliedAt": "2026-05-05T18:09:55.107Z",
  "lastUpdatedAt": "2026-05-06T20:22:17.380Z"
}