example-data.com

authors / #14

Maya Angelou

Maya Angelou

Textor vesica corrigo suppellex uxor error admiratio video. Molestias vomica nisi. Sed tenetur virgo aedificium tamquam coaegresco cribro.

Component variants

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

const res = await fetch(
  "https://example-data.com/api/v1/authors/14"
);
const author = (await res.json()) as Author;
import requests

res = requests.get(
    "https://example-data.com/api/v1/authors/14"
)
author = res.json()
{
  "id": 14,
  "name": "Maya Angelou",
  "slug": "maya-angelou",
  "bio": "Textor vesica corrigo suppellex uxor error admiratio video. Molestias vomica nisi. Sed tenetur virgo aedificium tamquam coaegresco cribro.",
  "bornYear": 1928,
  "diedYear": 2014,
  "nationality": "American",
  "genres": [
    "Memoir",
    "Poetry"
  ],
  "notableWorks": [
    "I Know Why the Caged Bird Sings"
  ],
  "imageUrl": "https://picsum.photos/seed/author-14/600/600",
  "createdAt": "2026-01-07T01:13:53.276Z"
}
Draftbit