example-data.com

authors / #32

Lexie Schiller

Lexie Schiller

Vomica tero blanditiis. Suscipio verbum hic bardus absens adflicto tyrannus. Maxime volup ciminatio ambulo depono.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/authors/32"
)
author = res.json()
{
  "id": 32,
  "name": "Lexie Schiller",
  "slug": "lexie-schiller",
  "bio": "Vomica tero blanditiis. Suscipio verbum hic bardus absens adflicto tyrannus. Maxime volup ciminatio ambulo depono.",
  "bornYear": 1978,
  "diedYear": null,
  "nationality": "Papua New Guinea",
  "genres": [
    "Mystery",
    "Literary fiction",
    "Young adult"
  ],
  "notableWorks": [
    "tum ter",
    "accusamus calcar velit"
  ],
  "imageUrl": "https://picsum.photos/seed/author-32/600/600",
  "createdAt": "2026-01-13T02:52:24.848Z"
}
Draftbit