example-data.com

authors / #25

Ursula K. Le Guin

Ursula K. Le Guin

Abutor sumo decipio cilicium centum bestia arguo. Cotidie texo textilis umerus tempora aggero aranea. Pecto abscido vorax volaticus tempora demonstro cauda ademptio spargo cicuta.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/authors/25"
)
author = res.json()
{
  "id": 25,
  "name": "Ursula K. Le Guin",
  "slug": "ursula-k-le-guin",
  "bio": "Abutor sumo decipio cilicium centum bestia arguo. Cotidie texo textilis umerus tempora aggero aranea. Pecto abscido vorax volaticus tempora demonstro cauda ademptio spargo cicuta.",
  "bornYear": 1929,
  "diedYear": 2018,
  "nationality": "American",
  "genres": [
    "Science fiction",
    "Fantasy"
  ],
  "notableWorks": [
    "A Wizard of Earthsea",
    "The Left Hand of Darkness"
  ],
  "imageUrl": "https://picsum.photos/seed/author-25/600/600",
  "createdAt": "2026-01-23T20:33:14.522Z"
}
Draftbit