example-data.com

stem-figures / #12

Rosalind Franklin

Rosalind Franklin

Tunc facere volaticus undique. Adulatio amplitudo solutio theca solutio cum. Ater appono votum.

Component variants

curl -sS \
  "https://example-data.com/api/v1/stem-figures/12" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/stem-figures/12"
);
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/12"
);
const stemFigure = (await res.json()) as StemFigure;
import requests

res = requests.get(
    "https://example-data.com/api/v1/stem-figures/12"
)
stem_figure = res.json()
{
  "id": 12,
  "name": "Rosalind Franklin",
  "slug": "rosalind-franklin",
  "field": "science",
  "bio": "Tunc facere volaticus undique. Adulatio amplitudo solutio theca solutio cum. Ater appono votum.",
  "bornYear": 1920,
  "diedYear": 1958,
  "country": "United Kingdom",
  "imageUrl": "https://picsum.photos/seed/stem-12/600/600",
  "accomplishments": [
    "X-ray crystallography of DNA"
  ],
  "createdAt": "2024-09-23T01:13:15.441Z"
}
Draftbit