Mahatma Gandhi
Aperio aegrus appositus cernuus colligo vesper consectetur. Perspiciatis alveus decor. Auditor adduco quas stillicidium cohaero.
Overview
activists / #3
Aperio aegrus appositus cernuus colligo vesper consectetur. Perspiciatis alveus decor. Auditor adduco quas stillicidium cohaero.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activists/3" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activists/3" ); 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/3"
);
const activist = (await res.json()) as Activist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activists/3"
)
activist = res.json() Response
{
"id": 3,
"name": "Mahatma Gandhi",
"slug": "mahatma-gandhi",
"bio": "Aperio aegrus appositus cernuus colligo vesper consectetur. Perspiciatis alveus decor. Auditor adduco quas stillicidium cohaero.",
"bornYear": 1869,
"diedYear": 1948,
"causes": [
"Indian independence",
"Non-violence"
],
"country": "India",
"imageUrl": "https://picsum.photos/seed/activist-3/600/600",
"accomplishments": [
"Led Indian independence movement",
"Salt March"
],
"createdAt": "2026-04-16T14:02:57.309Z"
}