example-data.com
Menu
Browse docs and collections

Overview

stem-figures / #30

Jane Goodall

Jane Goodall

Crepusculum vulnero asper trepide attollo repellendus vae vulgivagus virgo auctor. Acceptus ait vulticulus vulnero valens. Ait amiculum talio vos vulgaris viduo carpo.

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 30,
  "name": "Jane Goodall",
  "slug": "jane-goodall",
  "field": "science",
  "bio": "Crepusculum vulnero asper trepide attollo repellendus vae vulgivagus virgo auctor. Acceptus ait vulticulus vulnero valens. Ait amiculum talio vos vulgaris viduo carpo.",
  "bornYear": 1934,
  "diedYear": null,
  "country": "United Kingdom",
  "imageUrl": "https://picsum.photos/seed/stem-30/600/600",
  "accomplishments": [
    "Chimpanzee behavior research",
    "Conservation advocacy"
  ],
  "createdAt": "2025-06-02T19:56:54.048Z"
}