example-data.com
Menu
Browse docs and collections

Overview

applications / #156

Component variants

Medium
Small

User #109 applied (applied) Job #192 · 3/28/2026, 1:52:14 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 156,
  "userId": 109,
  "jobId": 192,
  "status": "applied",
  "coverLetter": "Ver cauda defero laboriosam aliquam cupiditas corpus supplanto. Aeger tot basium. Calamitas antepono deinde abscido.",
  "appliedAt": "2026-03-28T13:52:14.963Z",
  "lastUpdatedAt": "2026-05-20T20:41:04.029Z"
}