example-data.com

authors / #3

Ernest Hemingway

Ernest Hemingway

Ea validus maxime suus tui cinis. Delinquo tabgo trans conspergo facere. Terga tracto contabesco ulterius ratione dedecor cubitum cariosus animadverto.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/authors/3"
)
author = res.json()
{
  "id": 3,
  "name": "Ernest Hemingway",
  "slug": "ernest-hemingway",
  "bio": "Ea validus maxime suus tui cinis. Delinquo tabgo trans conspergo facere. Terga tracto contabesco ulterius ratione dedecor cubitum cariosus animadverto.",
  "bornYear": 1899,
  "diedYear": 1961,
  "nationality": "American",
  "genres": [
    "Modernism",
    "Literary fiction"
  ],
  "notableWorks": [
    "The Old Man and the Sea",
    "A Farewell to Arms",
    "For Whom the Bell Tolls"
  ],
  "imageUrl": "https://picsum.photos/seed/author-3/600/600",
  "createdAt": "2026-05-06T19:29:32.133Z"
}
Draftbit