Albert Einstein
Altus tempore torrens xiphias dens solitudo curo. Vinitor vindico dolorum. Tredecim strenuus abstergo adsidue utrimque compono cras autem.
Overview
stem-figures / #1
Altus tempore torrens xiphias dens solitudo curo. Vinitor vindico dolorum. Tredecim strenuus abstergo adsidue utrimque compono cras autem.
Request
curl example
curl -sS \
"https://example-data.com/api/v1/stem-figures/1" \
-H "Accept: application/json"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/stem-figures/1"
);
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/1"
);
const stemFigure = (await res.json()) as StemFigure;
Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/stem-figures/1"
)
stem_figure = res.json()
Response
{
"id": 1,
"name": "Albert Einstein",
"slug": "albert-einstein",
"field": "science",
"bio": "Altus tempore torrens xiphias dens solitudo curo. Vinitor vindico dolorum. Tredecim strenuus abstergo adsidue utrimque compono cras autem.",
"bornYear": 1879,
"diedYear": 1955,
"country": "Germany",
"imageUrl": "https://picsum.photos/seed/stem-1/600/600",
"accomplishments": [
"Theory of relativity",
"Nobel Prize in Physics 1921"
],
"createdAt": "2024-07-15T10:09:04.988Z"
}