example-data.com

activists / #29

Loma Kihn

Loma Kihn

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

Component variants

curl -sS \
  "https://example-data.com/api/v1/activists/29" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/activists/29"
);
const activist = await res.json();
import type { Activist } from "https://example-data.com/types/activists.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/activists/29"
);
const activist = (await res.json()) as Activist;
import requests

res = requests.get(
    "https://example-data.com/api/v1/activists/29"
)
activist = res.json()
{
  "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"
}
Draftbit