example-data.com
Menu
Browse docs and collections

Overview

applications / #210

Component variants

Medium
Small

User #140 applied (screening) Job #156 · 3/11/2026, 7:26:45 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 210,
  "userId": 140,
  "jobId": 156,
  "status": "screening",
  "coverLetter": "Numquam saepe deprecator valens eos temporibus currus. Omnis terminatio appello quaerat. Adulatio tametsi labore verbum celo cicuta aliqua.\n\nStips strues tempus conservo conor quidem vinco cunae tabella. Delectatio aperte omnis spargo aetas accedo veniam animi viscus quis. Aureus vere creber stillicidium texo ascisco.",
  "appliedAt": "2026-03-11T07:26:45.273Z",
  "lastUpdatedAt": "2026-03-14T07:13:39.888Z"
}