Veritas abutor
Author: Guillermo Bednar
1906
arthistorychildren
★ 3.7 (48250)
Demens soleo bellicus facilis contego trado venia. Artificiose denique thymum comes. Voluptatibus corroboro aperte denique agnitio.
books / #190
Author: Guillermo Bednar
1906
★ 3.7 (48250)
Demens soleo bellicus facilis contego trado venia. Artificiose denique thymum comes. Voluptatibus corroboro aperte denique agnitio.
Veritas abutor
1906
★ 3.7
curl -sS \
"https://example-data.com/api/v1/books/190" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/books/190"
);
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/190"
);
const book = (await res.json()) as Book;import requests
res = requests.get(
"https://example-data.com/api/v1/books/190"
)
book = res.json() {
"id": 190,
"title": "Veritas abutor",
"slug": "veritas-abutor-190",
"authors": [
"Guillermo Bednar"
],
"isbn": "8754694841114",
"publisher": "Orbit Books",
"publishedYear": 1906,
"pages": 470,
"language": "Spanish",
"description": "Demens soleo bellicus facilis contego trado venia. Artificiose denique thymum comes. Voluptatibus corroboro aperte denique agnitio.",
"coverUrl": "https://picsum.photos/seed/book-190/400/600",
"genres": [
"art",
"history",
"children"
],
"rating": 3.7,
"ratingCount": 48250,
"createdAt": "2025-05-02T14:32:50.203Z"
}