example-data.com

books / #170

Thesaurus solvo thesis copia facere

Thesaurus solvo thesis copia facere

Author: Essie Rutherford, Theresa Kub, Donnie Gislason

1965

cookingfantasyromance

★ 0.3 (41371)

Trans deleo cervus. Sequi nobis allatus complectus. Caute templum vesica ancilla.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/books/170"
)
book = res.json()
{
  "id": 170,
  "title": "Thesaurus solvo thesis copia facere",
  "slug": "thesaurus-solvo-thesis-copia-facere-170",
  "authors": [
    "Essie Rutherford",
    "Theresa Kub",
    "Donnie Gislason"
  ],
  "isbn": "0746590711408",
  "publisher": "Scholastic",
  "publishedYear": 1965,
  "pages": 588,
  "language": "Spanish",
  "description": "Trans deleo cervus. Sequi nobis allatus complectus. Caute templum vesica ancilla.",
  "coverUrl": "https://picsum.photos/seed/book-170/400/600",
  "genres": [
    "cooking",
    "fantasy",
    "romance"
  ],
  "rating": 0.3,
  "ratingCount": 41371,
  "createdAt": "2026-05-16T06:02:55.618Z"
}
Draftbit