Isaac Newton
Tersus varietas audeo. Centum vulgus adsidue supra. Cursus cado vox arma ambitus vere beatus.
Overview
stem-figures / #3
Tersus varietas audeo. Centum vulgus adsidue supra. Cursus cado vox arma ambitus vere beatus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/stem-figures/3" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/stem-figures/3" ); 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/3"
);
const stemFigure = (await res.json()) as StemFigure; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stem-figures/3"
)
stem_figure = res.json() Response
{
"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"
}