Michael Kuphal
Cognomen claudeo arcus accusantium repudiandae virga thema vinculum tot. Tandem benevolentia aliquid spargo quas. Callide labore utpote.
Overview
stem-figures / #42
Cognomen claudeo arcus accusantium repudiandae virga thema vinculum tot. Tandem benevolentia aliquid spargo quas. Callide labore utpote.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stem-figures/42" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stem-figures/42" ); 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/42"
);
const stemFigure = (await res.json()) as StemFigure; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stem-figures/42"
)
stem_figure = res.json() Response
{
"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"
}