example-data.com
Menu
Browse docs and collections

Overview

authors / #16

Margaret Atwood

Margaret Atwood

Nemo venia desino bis caste magni consequatur candidus sustineo. Summopere paulatim demulceo benevolentia cunctatio dedecor. Cometes vorax civis optio celebrer vestrum auditor vigor.

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 16,
  "name": "Margaret Atwood",
  "slug": "margaret-atwood",
  "bio": "Nemo venia desino bis caste magni consequatur candidus sustineo. Summopere paulatim demulceo benevolentia cunctatio dedecor. Cometes vorax civis optio celebrer vestrum auditor vigor.",
  "bornYear": 1939,
  "diedYear": null,
  "nationality": "Canadian",
  "genres": [
    "Speculative fiction",
    "Dystopian"
  ],
  "notableWorks": [
    "The Handmaid's Tale",
    "Oryx and Crake"
  ],
  "imageUrl": "https://picsum.photos/seed/author-16/600/600",
  "createdAt": "2025-12-02T18:28:32.663Z"
}