example-data.com
Menu
Browse docs and collections

Overview

activists / #35

Nash Batz

Nash Batz

Atrox assentator a eum conatus. Custodia stella temporibus ocer voluptatibus aegrotatio asper carbo magnam. Defleo ascisco dapifer conturbo.

Component variants

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/activists/35" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/activists/35"
);
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/35"
);
const activist = (await res.json()) as Activist;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/activists/35"
)
activist = res.json()

Response

{
  "id": 35,
  "name": "Nash Batz",
  "slug": "nash-batz",
  "bio": "Atrox assentator a eum conatus. Custodia stella temporibus ocer voluptatibus aegrotatio asper carbo magnam. Defleo ascisco dapifer conturbo.",
  "bornYear": 1914,
  "diedYear": 1994,
  "causes": [
    "LGBTQ rights",
    "Labor rights",
    "Anti-war"
  ],
  "country": "New Caledonia",
  "imageUrl": "https://picsum.photos/seed/activist-35/600/600",
  "accomplishments": [
    "Accommodo peccatus pauci voluptates defaeco cura.",
    "Tempora sublime fugit ea."
  ],
  "createdAt": "2025-06-20T17:23:07.966Z"
}