example-data.com
Menu
Browse docs and collections

Overview

applications / #313

Component variants

Medium
Small

User #204 applied (applied) Job #102 · 5/15/2026, 11:39:55 PM

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 313,
  "userId": 204,
  "jobId": 102,
  "status": "applied",
  "coverLetter": "Victus supellex ceno veritas assentator claro dedecor. Adstringo ultio aggredior inventore verto usitas crudelis commodi. Conduco aperio decumbo tam bene thesis magni thalassinus ait.\n\nCuriositas suggero vito verumtamen. Audacia statim magnam astrum cenaculum. Textor aliquid cariosus.",
  "appliedAt": "2026-05-15T23:39:55.008Z",
  "lastUpdatedAt": "2026-05-16T16:02:01.559Z"
}