example-data.com
Menu
Browse docs and collections

Overview

stem-figures / #37

Ena Hayes

Ena Hayes

Crudelis adinventitias arbustum defleo terra desipio corrupti. Aperiam tripudio conicio cognomen patrocinor. Sonitus umbra ventus commemoro.

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 37,
  "name": "Ena Hayes",
  "slug": "ena-hayes",
  "field": "technology",
  "bio": "Crudelis adinventitias arbustum defleo terra desipio corrupti. Aperiam tripudio conicio cognomen patrocinor. Sonitus umbra ventus commemoro.",
  "bornYear": 1975,
  "diedYear": null,
  "country": "Svalbard & Jan Mayen Islands",
  "imageUrl": "https://picsum.photos/seed/stem-37/600/600",
  "accomplishments": [
    "Incidunt accusamus coepi.",
    "Supplanto chirographum doloribus conculco ipsa."
  ],
  "createdAt": "2024-12-04T07:24:07.570Z"
}