example-data.com
Menu
Browse docs and collections

Overview

applications / #247

Component variants

Medium
Small

User #161 applied (applied) Job #227 · 4/23/2026, 6:57:43 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 247,
  "userId": 161,
  "jobId": 227,
  "status": "applied",
  "coverLetter": "Quam in territo sperno deleo exercitationem assumenda corrupti voluptatem asper. Solum thymbra denego civis caput vorago ager decet tot sustineo. Amo antiquus triumphus theca.\n\nVir considero eum. Adulatio rem ipsum tremo basium abbas capio. Audio audeo voro iste agnitio crudelis clamo saepe bellicus.",
  "appliedAt": "2026-04-23T18:57:43.021Z",
  "lastUpdatedAt": "2026-05-13T13:50:21.461Z"
}