example-data.com
Menu
Browse docs and collections

Overview

books / #158

Tabella repellat undique non vorago vetus

Tabella repellat undique non vorago vetus

Author: Bryant Boehm, Laverne Bergstrom-Funk DVM, Shari Kilback

1976

horror

★ 0.7 (53618)

Contego maiores sono depereo auditor aestivus arto vulgus adiuvo amplus. Adopto apostolus utor doloremque officiis crepusculum ipsam spes quisquam. Arx clam brevis stella agnosco vulticulus conculco supplanto ancilla.

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/books/158"
);
const book = await res.json();

TypeScript example

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

const res = await fetch(
  "https://example-data.com/api/v1/books/158"
);
const book = (await res.json()) as Book;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/books/158"
)
book = res.json()

Response

{
  "id": 158,
  "title": "Tabella repellat undique non vorago vetus",
  "slug": "tabella-repellat-undique-non-vorago-vetus-158",
  "authors": [
    "Bryant Boehm",
    "Laverne Bergstrom-Funk DVM",
    "Shari Kilback"
  ],
  "isbn": "4082795723520",
  "publisher": "Macmillan Publishers",
  "publishedYear": 1976,
  "pages": 984,
  "language": "Portuguese",
  "description": "Contego maiores sono depereo auditor aestivus arto vulgus adiuvo amplus. Adopto apostolus utor doloremque officiis crepusculum ipsam spes quisquam. Arx clam brevis stella agnosco vulticulus conculco supplanto ancilla.",
  "coverUrl": "https://picsum.photos/seed/book-158/400/600",
  "genres": [
    "horror"
  ],
  "rating": 0.7,
  "ratingCount": 53618,
  "createdAt": "2024-01-03T20:38:50.916Z"
}