Alexander Fleming
Dapifer campana fuga casso adstringo et caecus. Blandior commemoro conitor. Cervus eaque vomito viridis ipsam arma.
Overview
stem-figures / #29
Dapifer campana fuga casso adstringo et caecus. Blandior commemoro conitor. Cervus eaque vomito viridis ipsam arma.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stem-figures/29" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stem-figures/29" ); 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/29"
);
const stemFigure = (await res.json()) as StemFigure; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stem-figures/29"
)
stem_figure = res.json() Response
{
"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"
}