example-data.com

stem-figures / #42

Michael Kuphal

Michael Kuphal

Cognomen claudeo arcus accusantium repudiandae virga thema vinculum tot. Tandem benevolentia aliquid spargo quas. Callide labore utpote.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/stem-figures/42"
)
stem_figure = res.json()
{
  "id": 42,
  "name": "Michael Kuphal",
  "slug": "michael-kuphal",
  "field": "engineering",
  "bio": "Cognomen claudeo arcus accusantium repudiandae virga thema vinculum tot. Tandem benevolentia aliquid spargo quas. Callide labore utpote.",
  "bornYear": 1977,
  "diedYear": null,
  "country": "Uganda",
  "imageUrl": "https://picsum.photos/seed/stem-42/600/600",
  "accomplishments": [
    "Capto totus summopere est combibo torqueo comedo.",
    "Desino suppellex appello calamitas surculus deleniti decerno."
  ],
  "createdAt": "2025-10-12T17:13:47.739Z"
}
Draftbit