example-data.com
Menu
Browse docs and collections

stem-figures

stem-figures

Page 2 of 3.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/stem-figures?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/stem-figures?limit=25"
);
const { data, meta } = 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, ListEnvelope } from "./types/stem-figures";

const res = await fetch(
  "https://example-data.com/api/v1/stem-figures?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<StemFigure>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/stem-figures",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 25,
      "name": "Werner Heisenberg",
      "slug": "werner-heisenberg",
      "field": "science",
      "bio": "Sub vir fugiat curtus culpo. Facilis curatio vix tonsor architecto. Ancilla cresco quaerat talio crapula.",
      "bornYear": 1901,
      "diedYear": 1976,
      "country": "Germany",
      "imageUrl": "https://picsum.photos/seed/stem-25/600/600",
      "accomplishments": [
        "Uncertainty principle",
        "Matrix mechanics"
      ],
      "createdAt": "2026-02-03T18:25:59.641Z"
    },
    {
      "id": 26,
      "name": "Margaret Hamilton",
      "slug": "margaret-hamilton",
      "field": "technology",
      "bio": "Sumptus vir terra caelestis. Adhuc tempus ipsa audacia adeo tabesco tremo. Delego nam uredo deripio eligendi aegre ultra delectatio.",
      "bornYear": 1936,
      "diedYear": null,
      "country": "United States",
      "imageUrl": "https://picsum.photos/seed/stem-26/600/600",
      "accomplishments": [
        "Apollo guidance software",
        "Coined 'software engineering'"
      ],
      "createdAt": "2025-03-18T13:57:05.358Z"
    },
    {
      "id": 27,
      "name": "Claude Shannon",
      "slug": "claude-shannon",
      "field": "mathematics",
      "bio": "Alii audax suscipio validus. Sophismata demum avaritia conforto. Ademptio caput aggredior perferendis attonbitus eius.",
      "bornYear": 1916,
      "diedYear": 2001,
      "country": "United States",
      "imageUrl": "https://picsum.photos/seed/stem-27/600/600",
      "accomplishments": [
        "Information theory",
        "Digital circuit design"
      ],
      "createdAt": "2025-01-09T08:56:27.978Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 50,
    "totalPages": 3
  },
  "links": {
    "self": "/api/v1/stem-figures?page=2&limit=24",
    "first": "/api/v1/stem-figures?page=1&limit=24",
    "last": "/api/v1/stem-figures?page=3&limit=24",
    "next": "/api/v1/stem-figures?page=3&limit=24",
    "prev": "/api/v1/stem-figures?page=1&limit=24"
  }
}