example-data.com

stem-figures / #16

Tim Berners-Lee

Tim Berners-Lee

Soluta tendo cohibeo crudelis cibus teneo ab. Cuppedia volva ambulo harum theatrum culpa. Vorago vita certus benigne demonstro cubicularis suscipio.

Component variants

curl -sS \
  "https://example-data.com/api/v1/stem-figures/16" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/stem-figures/16"
);
const stemFigure = await res.json();
import type { StemFigure } from "https://example-data.com/types/stem-figures.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/stem-figures/16"
);
const stemFigure = (await res.json()) as StemFigure;
import requests

res = requests.get(
    "https://example-data.com/api/v1/stem-figures/16"
)
stem_figure = res.json()
{
  "id": 16,
  "name": "Tim Berners-Lee",
  "slug": "tim-berners-lee",
  "field": "technology",
  "bio": "Soluta tendo cohibeo crudelis cibus teneo ab. Cuppedia volva ambulo harum theatrum culpa. Vorago vita certus benigne demonstro cubicularis suscipio.",
  "bornYear": 1955,
  "diedYear": null,
  "country": "United Kingdom",
  "imageUrl": "https://picsum.photos/seed/stem-16/600/600",
  "accomplishments": [
    "Invented the World Wide Web"
  ],
  "createdAt": "2024-10-15T13:11:23.316Z"
}
Draftbit