example-data.com
Menu
Browse docs and collections

Overview

authors / #24

Jorge Luis Borges

Jorge Luis Borges

Excepturi sed adinventitias ventito ustilo coma denique dolores. Soluta utrimque compello verto quia. Sollicito crebro cilicium aveho derideo.

Component variants

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/authors/24"
);
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/24"
);
const author = (await res.json()) as Author;

Python example

import requests

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

Response

{
  "id": 24,
  "name": "Jorge Luis Borges",
  "slug": "jorge-luis-borges",
  "bio": "Excepturi sed adinventitias ventito ustilo coma denique dolores. Soluta utrimque compello verto quia. Sollicito crebro cilicium aveho derideo.",
  "bornYear": 1899,
  "diedYear": 1986,
  "nationality": "Argentine",
  "genres": [
    "Short fiction",
    "Magical realism"
  ],
  "notableWorks": [
    "Ficciones",
    "The Aleph"
  ],
  "imageUrl": "https://picsum.photos/seed/author-24/600/600",
  "createdAt": "2025-12-03T17:55:28.716Z"
}