Comburo dolorum desolo
Author: Tasha Sawayn, Julio Marks
1914
self-help
★ 3.1 (58260)
Subiungo nihil thema vilis studio confido usque. Termes textor agnosco clibanus suppono communis ambulo. Bestia cogito sit via textus solio adfero sto.
books / #136
Author: Tasha Sawayn, Julio Marks
1914
★ 3.1 (58260)
Subiungo nihil thema vilis studio confido usque. Termes textor agnosco clibanus suppono communis ambulo. Bestia cogito sit via textus solio adfero sto.
curl -sS \
"https://example-data.com/api/v1/books/136" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/books/136"
);
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/136"
);
const book = (await res.json()) as Book;import requests
res = requests.get(
"https://example-data.com/api/v1/books/136"
)
book = res.json() {
"id": 136,
"title": "Comburo dolorum desolo",
"slug": "comburo-dolorum-desolo-136",
"authors": [
"Tasha Sawayn",
"Julio Marks"
],
"isbn": "4136266025318",
"publisher": "Bloomsbury",
"publishedYear": 1914,
"pages": 375,
"language": "Spanish",
"description": "Subiungo nihil thema vilis studio confido usque. Termes textor agnosco clibanus suppono communis ambulo. Bestia cogito sit via textus solio adfero sto.",
"coverUrl": "https://picsum.photos/seed/book-136/400/600",
"genres": [
"self-help"
],
"rating": 3.1,
"ratingCount": 58260,
"createdAt": "2025-03-05T00:13:36.500Z"
}