example-data.com
Menu
Browse docs and collections

Overview

activists / #29

Loma Kihn

Loma Kihn

Cavus dolor pauper damno. Voco architecto adicio paulatim vomica cubitum. Tactus terminatio bene deporto.

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 29,
  "name": "Loma Kihn",
  "slug": "loma-kihn",
  "bio": "Cavus dolor pauper damno. Voco architecto adicio paulatim vomica cubitum. Tactus terminatio bene deporto.",
  "bornYear": 1943,
  "diedYear": null,
  "causes": [
    "Civil rights"
  ],
  "country": "Bahrain",
  "imageUrl": "https://picsum.photos/seed/activist-29/600/600",
  "accomplishments": [
    "Catena apud usitas varius terga.",
    "Alveus cibo corrigo infit vinum peccatus."
  ],
  "createdAt": "2025-07-24T09:43:27.319Z"
}