example-data.com

stem-figures / #29

Alexander Fleming

Alexander Fleming

Dapifer campana fuga casso adstringo et caecus. Blandior commemoro conitor. Cervus eaque vomito viridis ipsam arma.

Component variants

curl -sS \
  "https://example-data.com/api/v1/stem-figures/29" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/stem-figures/29"
);
const stemFigure = await res.json();
import type { StemFigure } from "https://example-data.com/types/stem-figures.d.ts";

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

res = requests.get(
    "https://example-data.com/api/v1/stem-figures/29"
)
stem_figure = res.json()
{
  "id": 29,
  "name": "Alexander Fleming",
  "slug": "alexander-fleming",
  "field": "science",
  "bio": "Dapifer campana fuga casso adstringo et caecus. Blandior commemoro conitor. Cervus eaque vomito viridis ipsam arma.",
  "bornYear": 1881,
  "diedYear": 1955,
  "country": "Scotland",
  "imageUrl": "https://picsum.photos/seed/stem-29/600/600",
  "accomplishments": [
    "Discovery of penicillin"
  ],
  "createdAt": "2025-10-23T00:20:43.315Z"
}
Draftbit