example-data.com

stem-figures / #3

Isaac Newton

Isaac Newton

Tersus varietas audeo. Centum vulgus adsidue supra. Cursus cado vox arma ambitus vere beatus.

Component variants

curl -sS \
  "https://example-data.com/api/v1/stem-figures/3" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/stem-figures/3"
);
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/3"
);
const stemFigure = (await res.json()) as StemFigure;
import requests

res = requests.get(
    "https://example-data.com/api/v1/stem-figures/3"
)
stem_figure = res.json()
{
  "id": 3,
  "name": "Isaac Newton",
  "slug": "isaac-newton",
  "field": "mathematics",
  "bio": "Tersus varietas audeo. Centum vulgus adsidue supra. Cursus cado vox arma ambitus vere beatus.",
  "bornYear": 1643,
  "diedYear": 1727,
  "country": "England",
  "imageUrl": "https://picsum.photos/seed/stem-3/600/600",
  "accomplishments": [
    "Laws of motion",
    "Universal gravitation",
    "Co-invented calculus"
  ],
  "createdAt": "2025-06-15T14:50:33.767Z"
}
Draftbit