example-data.com

stem-figures / #30

Jane Goodall

Jane Goodall

Crepusculum vulnero asper trepide attollo repellendus vae vulgivagus virgo auctor. Acceptus ait vulticulus vulnero valens. Ait amiculum talio vos vulgaris viduo carpo.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/stem-figures/30"
)
stem_figure = res.json()
{
  "id": 30,
  "name": "Jane Goodall",
  "slug": "jane-goodall",
  "field": "science",
  "bio": "Crepusculum vulnero asper trepide attollo repellendus vae vulgivagus virgo auctor. Acceptus ait vulticulus vulnero valens. Ait amiculum talio vos vulgaris viduo carpo.",
  "bornYear": 1934,
  "diedYear": null,
  "country": "United Kingdom",
  "imageUrl": "https://picsum.photos/seed/stem-30/600/600",
  "accomplishments": [
    "Chimpanzee behavior research",
    "Conservation advocacy"
  ],
  "createdAt": "2025-06-02T19:56:54.048Z"
}
Draftbit