example-data.com
Menu
Browse docs and collections

Overview

books / #64

Arcesso eaque solium

Arcesso eaque solium

Author: Shawna Mayer, Carlton Bins DDS, Dr. Roland Brown

1931

psychology

★ 1.7 (74641)

Subiungo suus aetas cervus comparo abbas. Tremo balbus sol curvo xiphias patior ante. Uterque clamo peior subnecto supplanto. Venia adficio antea vinitor.

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/books/64"
);
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/64"
);
const book = (await res.json()) as Book;

Python example

import requests

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

Response

{
  "id": 64,
  "title": "Arcesso eaque solium",
  "slug": "arcesso-eaque-solium-64",
  "authors": [
    "Shawna Mayer",
    "Carlton Bins DDS",
    "Dr. Roland Brown"
  ],
  "isbn": "6571086764832",
  "publisher": "Vintage Books",
  "publishedYear": 1931,
  "pages": 1036,
  "language": "French",
  "description": "Subiungo suus aetas cervus comparo abbas. Tremo balbus sol curvo xiphias patior ante. Uterque clamo peior subnecto supplanto. Venia adficio antea vinitor.",
  "coverUrl": "https://picsum.photos/seed/book-64/400/600",
  "genres": [
    "psychology"
  ],
  "rating": 1.7,
  "ratingCount": 74641,
  "createdAt": "2024-04-29T02:50:12.103Z"
}