Chimamanda Ngozi Adichie
Caelestis illo termes vulgus concedo. Sunt cuppedia comminor certus incidunt xiphias demum. Amitto antea absque apparatus deputo caute collum.
authors / #15
Caelestis illo termes vulgus concedo. Sunt cuppedia comminor certus incidunt xiphias demum. Amitto antea absque apparatus deputo caute collum.
curl -sS \
"https://example-data.com/api/v1/authors/15" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/authors/15"
);
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/15"
);
const author = (await res.json()) as Author;import requests
res = requests.get(
"https://example-data.com/api/v1/authors/15"
)
author = res.json() {
"id": 15,
"name": "Chimamanda Ngozi Adichie",
"slug": "chimamanda-ngozi-adichie",
"bio": "Caelestis illo termes vulgus concedo. Sunt cuppedia comminor certus incidunt xiphias demum. Amitto antea absque apparatus deputo caute collum.",
"bornYear": 1977,
"diedYear": null,
"nationality": "Nigerian",
"genres": [
"Literary fiction"
],
"notableWorks": [
"Half of a Yellow Sun",
"Americanah"
],
"imageUrl": "https://picsum.photos/seed/author-15/600/600",
"createdAt": "2025-01-16T00:41:38.280Z"
}