Greta Thunberg
Tamisium atrocitas sublime ancilla. Corroboro creber autem fugit supra ex blanditiis vesica officiis. Ut pecco cohors absconditus sunt.
activists / #11
Tamisium atrocitas sublime ancilla. Corroboro creber autem fugit supra ex blanditiis vesica officiis. Ut pecco cohors absconditus sunt.
curl -sS \
"https://example-data.com/api/v1/activists/11" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/activists/11"
);
const activist = await res.json();import type { Activist } from "https://example-data.com/types/activists.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/activists/11"
);
const activist = (await res.json()) as Activist;import requests
res = requests.get(
"https://example-data.com/api/v1/activists/11"
)
activist = res.json() {
"id": 11,
"name": "Greta Thunberg",
"slug": "greta-thunberg",
"bio": "Tamisium atrocitas sublime ancilla. Corroboro creber autem fugit supra ex blanditiis vesica officiis. Ut pecco cohors absconditus sunt.",
"bornYear": 2003,
"diedYear": null,
"causes": [
"Climate change",
"Environment"
],
"country": "Sweden",
"imageUrl": "https://picsum.photos/seed/activist-11/600/600",
"accomplishments": [
"Founded Fridays for Future",
"UN Climate Action Summit speech"
],
"createdAt": "2025-07-22T02:26:05.874Z"
}