example-data.com

authors / #27

Amie Wehner

Amie Wehner

Quo vito aeger. Decipio utor eligendi quos aer nulla strues. Tamisium deserunt vociferor alveus.

Component variants

curl -sS \
  "https://example-data.com/api/v1/authors/27" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/authors/27"
);
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/27"
);
const author = (await res.json()) as Author;
import requests

res = requests.get(
    "https://example-data.com/api/v1/authors/27"
)
author = res.json()
{
  "id": 27,
  "name": "Amie Wehner",
  "slug": "amie-wehner",
  "bio": "Quo vito aeger. Decipio utor eligendi quos aer nulla strues. Tamisium deserunt vociferor alveus.",
  "bornYear": 1910,
  "diedYear": null,
  "nationality": "Mauritius",
  "genres": [
    "Drama"
  ],
  "notableWorks": [
    "adinventitias angulus adicio defluo",
    "illo repellat reprehenderit vesco termes"
  ],
  "imageUrl": "https://picsum.photos/seed/author-27/600/600",
  "createdAt": "2025-09-24T03:44:07.220Z"
}
Draftbit