example-data.com
Menu
Browse docs and collections

Overview

authors / #15

Chimamanda Ngozi Adichie

Chimamanda Ngozi Adichie

Caelestis illo termes vulgus concedo. Sunt cuppedia comminor certus incidunt xiphias demum. Amitto antea absque apparatus deputo caute collum.

Component variants

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/authors/15"
);
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/15"
);
const author = (await res.json()) as Author;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/authors/15"
)
author = res.json()

Response

{
  "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"
}