example-data.com
Menu
Browse docs and collections

Overview

stem-figures / #22

Emmy Noether

Emmy Noether

Complectus supra utilis altus pecus angulus causa valens amor stipes. Vetus vere contego spoliatio virgo anser depopulo sodalitas. Deorsum cogito magni cunabula attero vulnero officia nostrum censura attero.

Component variants

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/stem-figures/22" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/stem-figures/22"
);
const stemFigure = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/stem-figures.d.ts https://example-data.com/types/stem-figures.d.ts
import type { StemFigure } from "./types/stem-figures";

const res = await fetch(
  "https://example-data.com/api/v1/stem-figures/22"
);
const stemFigure = (await res.json()) as StemFigure;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/stem-figures/22"
)
stem_figure = res.json()

Response

{
  "id": 22,
  "name": "Emmy Noether",
  "slug": "emmy-noether",
  "field": "mathematics",
  "bio": "Complectus supra utilis altus pecus angulus causa valens amor stipes. Vetus vere contego spoliatio virgo anser depopulo sodalitas. Deorsum cogito magni cunabula attero vulnero officia nostrum censura attero.",
  "bornYear": 1882,
  "diedYear": 1935,
  "country": "Germany",
  "imageUrl": "https://picsum.photos/seed/stem-22/600/600",
  "accomplishments": [
    "Noether's theorem",
    "Abstract algebra"
  ],
  "createdAt": "2025-08-11T04:29:41.999Z"
}