example-data.com

books / #171

Virgo agnitio appello

Virgo agnitio appello

Author: Claudia Lindgren, Roland Haley, Ms. Ella Aufderhar

1977

self-help

★ 1.2 (93182)

Necessitatibus solio creta vulpes. Armarium cupiditas tabgo. Defluo curis deserunt eligendi.

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/books/171" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/books/171"
);
const book = await res.json();
import type { Book } from "https://example-data.com/types/books.d.ts";

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

res = requests.get(
    "https://example-data.com/api/v1/books/171"
)
book = res.json()
{
  "id": 171,
  "title": "Virgo agnitio appello",
  "slug": "virgo-agnitio-appello-171",
  "authors": [
    "Claudia Lindgren",
    "Roland Haley",
    "Ms. Ella Aufderhar"
  ],
  "isbn": "6252578648219",
  "publisher": "Bloomsbury",
  "publishedYear": 1977,
  "pages": 724,
  "language": "Italian",
  "description": "Necessitatibus solio creta vulpes. Armarium cupiditas tabgo. Defluo curis deserunt eligendi.",
  "coverUrl": "https://picsum.photos/seed/book-171/400/600",
  "genres": [
    "self-help"
  ],
  "rating": 1.2,
  "ratingCount": 93182,
  "createdAt": "2026-03-09T03:12:40.095Z"
}
Draftbit