example-data.com
Menu
Browse docs and collections

Overview

applications / #39

Component variants

Medium
Small

User #27 applied (screening) Job #47 · 5/17/2026, 8:04:27 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 39,
  "userId": 27,
  "jobId": 47,
  "status": "screening",
  "coverLetter": "Video caveo cetera facilis succedo tam currus ultra autem solus. Sui caries ter valeo acsi pauci quae. Speciosus succedo absorbeo thymbra quis verbera comminor thesis tergo.",
  "appliedAt": "2026-05-17T08:04:27.692Z",
  "lastUpdatedAt": "2026-05-18T02:00:41.875Z"
}