example-data.com

books / #178

Trans cariosus

Trans cariosus

Author: Cathy Klocko MD

1959

young-adultcookingfiction

★ 3.7 (2872)

Arx cubo architecto. Adimpleo harum sono pecco defero alter. Sequi comis patior. Verecundia demens distinctio terga thermae advenio barba. Nihil delicate atque. Cenaculum depopulo curiositas audacia vox supellex.

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/books/178" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/books/178"
);
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/178"
);
const book = (await res.json()) as Book;
import requests

res = requests.get(
    "https://example-data.com/api/v1/books/178"
)
book = res.json()
{
  "id": 178,
  "title": "Trans cariosus",
  "slug": "trans-cariosus-178",
  "authors": [
    "Cathy Klocko MD"
  ],
  "isbn": "9824777641640",
  "publisher": "Macmillan Publishers",
  "publishedYear": 1959,
  "pages": 211,
  "language": "Italian",
  "description": "Arx cubo architecto. Adimpleo harum sono pecco defero alter. Sequi comis patior. Verecundia demens distinctio terga thermae advenio barba. Nihil delicate atque. Cenaculum depopulo curiositas audacia vox supellex.",
  "coverUrl": "https://picsum.photos/seed/book-178/400/600",
  "genres": [
    "young-adult",
    "cooking",
    "fiction"
  ],
  "rating": 3.7,
  "ratingCount": 2872,
  "createdAt": "2025-07-10T03:43:25.393Z"
}
Draftbit