example-data.com
Menu
Browse docs and collections

Overview

stem-figures / #10

Stephen Hawking

Stephen Hawking

Desino amet repudiandae voluntarius deduco arto. Cruentus adficio tabella tergiversatio ventus molestiae spero combibo. Tenetur aegre voveo tertius facilis nihil comparo dedico amor.

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 10,
  "name": "Stephen Hawking",
  "slug": "stephen-hawking",
  "field": "science",
  "bio": "Desino amet repudiandae voluntarius deduco arto. Cruentus adficio tabella tergiversatio ventus molestiae spero combibo. Tenetur aegre voveo tertius facilis nihil comparo dedico amor.",
  "bornYear": 1942,
  "diedYear": 2018,
  "country": "United Kingdom",
  "imageUrl": "https://picsum.photos/seed/stem-10/600/600",
  "accomplishments": [
    "Hawking radiation",
    "A Brief History of Time"
  ],
  "createdAt": "2025-08-08T00:37:11.297Z"
}