example-data.com
Menu
Browse docs and collections

Overview

stem-figures / #45

Chet Schaefer

Chet Schaefer

Illo coruscus solvo caterva adulatio hic solutio sublime tui ars. Peior cultellus voro culpa valeo stipes ventito. Territo combibo fugit utrimque depromo omnis.

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 45,
  "name": "Chet Schaefer",
  "slug": "chet-schaefer",
  "field": "technology",
  "bio": "Illo coruscus solvo caterva adulatio hic solutio sublime tui ars. Peior cultellus voro culpa valeo stipes ventito. Territo combibo fugit utrimque depromo omnis.",
  "bornYear": 1917,
  "diedYear": null,
  "country": "Belgium",
  "imageUrl": "https://picsum.photos/seed/stem-45/600/600",
  "accomplishments": [
    "Crux teres deripio cohaero aperio coepi.",
    "Decimus astrum testimonium cibus repellat adsidue."
  ],
  "createdAt": "2025-03-08T21:46:12.730Z"
}