Harriet Tubman
Sponte usitas solitudo adipisci contra ventus bellum apud altus. Adficio ager vivo venustas. Via tantillus infit timor appello tamquam.
Overview
activists / #8
Sponte usitas solitudo adipisci contra ventus bellum apud altus. Adficio ager vivo venustas. Via tantillus infit timor appello tamquam.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/activists/8" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/activists/8" ); 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/8"
);
const activist = (await res.json()) as Activist; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/activists/8"
)
activist = res.json() Response
{
"id": 8,
"name": "Harriet Tubman",
"slug": "harriet-tubman",
"bio": "Sponte usitas solitudo adipisci contra ventus bellum apud altus. Adficio ager vivo venustas. Via tantillus infit timor appello tamquam.",
"bornYear": 1822,
"diedYear": 1913,
"causes": [
"Abolition",
"Women's suffrage"
],
"country": "United States",
"imageUrl": "https://picsum.photos/seed/activist-8/600/600",
"accomplishments": [
"Conductor on Underground Railroad",
"Civil War scout"
],
"createdAt": "2025-04-14T12:31:00.928Z"
}