Peior contra arbustum thalassinus
Author: Sherri Schamberger, Terrence Marks
1999
horror
★ 3.1 (41641)
Adfero arto voluptate summa tepidus. Vulnus creator bos thesis fuga admoneo. Vorax cupio sto.
books / #229
Author: Sherri Schamberger, Terrence Marks
1999
★ 3.1 (41641)
Adfero arto voluptate summa tepidus. Vulnus creator bos thesis fuga admoneo. Vorax cupio sto.
curl -sS \
"https://example-data.com/api/v1/books/229" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/books/229"
);
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/229"
);
const book = (await res.json()) as Book;import requests
res = requests.get(
"https://example-data.com/api/v1/books/229"
)
book = res.json() {
"id": 229,
"title": "Peior contra arbustum thalassinus",
"slug": "peior-contra-arbustum-thalassinus-229",
"authors": [
"Sherri Schamberger",
"Terrence Marks"
],
"isbn": "7996862271482",
"publisher": "Hachette Book Group",
"publishedYear": 1999,
"pages": 1049,
"language": "Spanish",
"description": "Adfero arto voluptate summa tepidus. Vulnus creator bos thesis fuga admoneo. Vorax cupio sto.",
"coverUrl": "https://picsum.photos/seed/book-229/400/600",
"genres": [
"horror"
],
"rating": 3.1,
"ratingCount": 41641,
"createdAt": "2025-05-11T03:17:54.929Z"
}