example-data.com

authors / #6

Gabriel García Márquez

Gabriel García Márquez

Ab utrimque cervus antiquus aeternus patria caries veniam. Virgo certe deripio uberrime thema soluta id vallum reiciendis. Ocer aperio sopor calculus cernuus uredo tremo usus sufficio.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/authors/6"
)
author = res.json()
{
  "id": 6,
  "name": "Gabriel García Márquez",
  "slug": "gabriel-garc-a-m-rquez",
  "bio": "Ab utrimque cervus antiquus aeternus patria caries veniam. Virgo certe deripio uberrime thema soluta id vallum reiciendis. Ocer aperio sopor calculus cernuus uredo tremo usus sufficio.",
  "bornYear": 1927,
  "diedYear": 2014,
  "nationality": "Colombian",
  "genres": [
    "Magical realism"
  ],
  "notableWorks": [
    "One Hundred Years of Solitude",
    "Love in the Time of Cholera"
  ],
  "imageUrl": "https://picsum.photos/seed/author-6/600/600",
  "createdAt": "2026-02-02T03:05:32.471Z"
}
Draftbit