Maya Angelou
Textor vesica corrigo suppellex uxor error admiratio video. Molestias vomica nisi. Sed tenetur virgo aedificium tamquam coaegresco cribro.
Overview
authors / #14
Textor vesica corrigo suppellex uxor error admiratio video. Molestias vomica nisi. Sed tenetur virgo aedificium tamquam coaegresco cribro.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/authors/14" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/authors/14" ); const author = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/authors.d.ts https://example-data.com/types/authors.d.ts
import type { Author } from "./types/authors";
const res = await fetch(
"https://example-data.com/api/v1/authors/14"
);
const author = (await res.json()) as Author; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/authors/14"
)
author = res.json() Response
{
"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"
}