example-data.com
Menu
Browse docs and collections

Overview

stem-figures / #13

Galileo Galilei

Galileo Galilei

Odit teneo argentum barba vulnus modi vulariter sono amet. Chirographum ventosus contego impedit vigilo tabesco totidem dignissimos commodo condico. Vaco vis aureus.

Component variants

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/stem-figures/13" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/stem-figures/13"
);
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/13"
);
const stemFigure = (await res.json()) as StemFigure;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/stem-figures/13"
)
stem_figure = res.json()

Response

{
  "id": 13,
  "name": "Galileo Galilei",
  "slug": "galileo-galilei",
  "field": "science",
  "bio": "Odit teneo argentum barba vulnus modi vulariter sono amet. Chirographum ventosus contego impedit vigilo tabesco totidem dignissimos commodo condico. Vaco vis aureus.",
  "bornYear": 1564,
  "diedYear": 1642,
  "country": "Italy",
  "imageUrl": "https://picsum.photos/seed/stem-13/600/600",
  "accomplishments": [
    "Telescopic astronomy",
    "Laws of motion"
  ],
  "createdAt": "2025-10-20T16:41:57.206Z"
}