example-data.com
Menu
Browse docs and collections

Overview

stem-figures / #44

Alaina Connelly

Alaina Connelly

Appono denuncio cursim. Suus capto omnis temeritas tumultus cenaculum vita adficio degero desipio. Fugit tremo vilitas terra sordeo vesper claustrum terror bestia tempore.

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 44,
  "name": "Alaina Connelly",
  "slug": "alaina-connelly",
  "field": "science",
  "bio": "Appono denuncio cursim. Suus capto omnis temeritas tumultus cenaculum vita adficio degero desipio. Fugit tremo vilitas terra sordeo vesper claustrum terror bestia tempore.",
  "bornYear": 1910,
  "diedYear": null,
  "country": "Pakistan",
  "imageUrl": "https://picsum.photos/seed/stem-44/600/600",
  "accomplishments": [
    "Thymbra vigilo adeptio temeritas.",
    "Sollers degenero blanditiis artificiose alter aequitas defluo comedo pecto."
  ],
  "createdAt": "2025-09-07T21:48:07.553Z"
}