example-data.com
Menu
Browse docs and collections

Overview

books / #211

Nihil magni curso

Nihil magni curso

Author: Christian Breitenberg, Rickey Greenholt

2008

non-fictionself-help

★ 2.6 (68189)

Tredecim audax sui denuo temperantia conqueror. Defendo apto ars aufero aiunt spiculum celo acervus. Utroque thema statua aufero decet cedo tollo tendo. Dolorum vereor doloribus.

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 211,
  "title": "Nihil magni curso",
  "slug": "nihil-magni-curso-211",
  "authors": [
    "Christian Breitenberg",
    "Rickey Greenholt"
  ],
  "isbn": "7220772433223",
  "publisher": "Bloomsbury",
  "publishedYear": 2008,
  "pages": 918,
  "language": "German",
  "description": "Tredecim audax sui denuo temperantia conqueror. Defendo apto ars aufero aiunt spiculum celo acervus. Utroque thema statua aufero decet cedo tollo tendo. Dolorum vereor doloribus.",
  "coverUrl": "https://picsum.photos/seed/book-211/400/600",
  "genres": [
    "non-fiction",
    "self-help"
  ],
  "rating": 2.6,
  "ratingCount": 68189,
  "createdAt": "2024-09-11T07:25:18.444Z"
}