Greta Thunberg
Tamisium atrocitas sublime ancilla. Corroboro creber autem fugit supra ex blanditiis vesica officiis. Ut pecco cohors absconditus sunt.
Overview
activists / #11
Tamisium atrocitas sublime ancilla. Corroboro creber autem fugit supra ex blanditiis vesica officiis. Ut pecco cohors absconditus sunt.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activists/11" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activists/11" ); const activist = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/activists.d.ts https://example-data.com/types/activists.d.ts
import type { Activist } from "./types/activists";
const res = await fetch(
"https://example-data.com/api/v1/activists/11"
);
const activist = (await res.json()) as Activist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activists/11"
)
activist = res.json() Response
{
"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"
}