example-data.com
Menu
Browse docs and collections

Overview

applications / #26

Component variants

Medium
Small

User #17 applied (interview) Job #126 · 4/20/2026, 5:59:12 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 26,
  "userId": 17,
  "jobId": 126,
  "status": "interview",
  "coverLetter": "Cervus aeger stillicidium. Stillicidium ullam omnis denuo calcar aetas. Tremo beatus cubicularis tamdiu antepono cursim corrigo angustus utor annus.",
  "appliedAt": "2026-04-20T17:59:12.980Z",
  "lastUpdatedAt": "2026-04-21T17:12:37.732Z"
}