example-data.com
Menu
Browse docs and collections

Overview

applications / #180

Component variants

Medium
Small

User #123 applied (interview) Job #33 · 2/10/2026, 2:59:01 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 180,
  "userId": 123,
  "jobId": 33,
  "status": "interview",
  "coverLetter": "Vomica subito versus. Ubi caelestis turbo. Candidus antiquus caveo.",
  "appliedAt": "2026-02-10T14:59:01.839Z",
  "lastUpdatedAt": "2026-02-19T23:59:29.388Z"
}