example-data.com
Menu
Browse docs and collections

Overview

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

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/authors/6" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/authors/6"
);
const author = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/authors.d.ts https://example-data.com/types/authors.d.ts
import type { Author } from "./types/authors";

const res = await fetch(
  "https://example-data.com/api/v1/authors/6"
);
const author = (await res.json()) as Author;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/authors/6"
)
author = res.json()

Response

{
  "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"
}