example-data.com
Menu
Browse docs and collections

Overview

applications / #219

Component variants

Medium
Small

User #143 applied (screening) Job #127 · 12/25/2025, 4:27:23 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 219,
  "userId": 143,
  "jobId": 127,
  "status": "screening",
  "coverLetter": "Apud eum ascisco vesica cunabula pauper laboriosam cohibeo tepidus contabesco. Copiose beneficium a carus distinctio. Despecto amor absorbeo alias centum aggredior.",
  "appliedAt": "2025-12-25T16:27:23.311Z",
  "lastUpdatedAt": "2026-01-16T21:15:14.542Z"
}