example-data.com
Menu
Browse docs and collections

Overview

applications / #259

Component variants

Medium
Small

User #170 applied (screening) Job #59 · 3/20/2026, 9:58:31 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 259,
  "userId": 170,
  "jobId": 59,
  "status": "screening",
  "coverLetter": "Clarus rerum ciminatio copia id. Corpus coniuratio brevis comedo asperiores laboriosam ocer aperte casso varius. Cruentus tam solus.",
  "appliedAt": "2026-03-20T09:58:31.650Z",
  "lastUpdatedAt": "2026-05-19T01:22:00.734Z"
}