example-data.com

activists / #20

Marsha P. Johnson

Marsha P. Johnson

Uterque astrum capio statim demulceo occaecati tot tabella reprehenderit absens. Candidus claudeo confero conatus aptus. Aufero adipiscor pauci.

Component variants

curl -sS \
  "https://example-data.com/api/v1/activists/20" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/activists/20"
);
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/20"
);
const activist = (await res.json()) as Activist;
import requests

res = requests.get(
    "https://example-data.com/api/v1/activists/20"
)
activist = res.json()
{
  "id": 20,
  "name": "Marsha P. Johnson",
  "slug": "marsha-p-johnson",
  "bio": "Uterque astrum capio statim demulceo occaecati tot tabella reprehenderit absens. Candidus claudeo confero conatus aptus. Aufero adipiscor pauci.",
  "bornYear": 1945,
  "diedYear": 1992,
  "causes": [
    "LGBTQ rights",
    "Trans rights"
  ],
  "country": "United States",
  "imageUrl": "https://picsum.photos/seed/activist-20/600/600",
  "accomplishments": [
    "Stonewall uprising leader",
    "AIDS activism"
  ],
  "createdAt": "2025-01-23T07:51:25.494Z"
}
Draftbit