example-data.com
Menu
Browse docs and collections

Overview

applications / #241

Component variants

Medium
Small

User #158 applied (applied) Job #104 · 1/12/2026, 7:29:33 AM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 241,
  "userId": 158,
  "jobId": 104,
  "status": "applied",
  "coverLetter": "Culpa cenaculum aliquid utilis corroboro vallum venio ars. Carpo coma ter. Patruus verto copia.",
  "appliedAt": "2026-01-12T07:29:33.128Z",
  "lastUpdatedAt": "2026-03-01T03:49:34.021Z"
}