example-data.com
Menu
Browse docs and collections

Overview

activists / #48

Stacey Kshlerin

Stacey Kshlerin

Appello vesco statua cerno eveniet totidem absconditus studio. Aeneus tenax occaecati creptio stella. Decet corporis deduco coniuratio tepidus claustrum aliqua iure viriliter campana.

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 48,
  "name": "Stacey Kshlerin",
  "slug": "stacey-kshlerin",
  "bio": "Appello vesco statua cerno eveniet totidem absconditus studio. Aeneus tenax occaecati creptio stella. Decet corporis deduco coniuratio tepidus claustrum aliqua iure viriliter campana.",
  "bornYear": 1994,
  "diedYear": null,
  "causes": [
    "Civil rights",
    "Poverty"
  ],
  "country": "Marshall Islands",
  "imageUrl": "https://picsum.photos/seed/activist-48/600/600",
  "accomplishments": [
    "Asporto thymbra synagoga apud audacia vomica ager auditor spiculum.",
    "Avaritia via depulso tres crur calculus villa."
  ],
  "createdAt": "2025-08-01T01:38:03.573Z"
}