example-data.com
Menu
Browse docs and collections

Overview

applications / #179

Component variants

Medium
Small

User #122 applied (screening) Job #71 · 3/8/2026, 3:04:03 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 179,
  "userId": 122,
  "jobId": 71,
  "status": "screening",
  "coverLetter": "Compello officiis statua velociter sit vilicus baiulus. Calculus eaque curiositas ago supra pecco causa acerbitas. Abeo advenio casso aureus textilis vulgaris bardus victus.\n\nCibo cursus calco cenaculum desipio cras creator. Adeptio tergum collum tabernus cometes depromo. Averto thorax saepe sollicito reiciendis.",
  "appliedAt": "2026-03-08T03:04:03.745Z",
  "lastUpdatedAt": "2026-03-11T18:36:49.049Z"
}