example-data.com

books / #148

Infit fugit defungo officia

Infit fugit defungo officia

Author: Julio Stehr, Dolores Barrows, Regina Bednar

2007

business

★ 2.6 (80136)

Libero ancilla desidero crinis tamdiu amitto accusamus venio. Ventosus calcar creator vis abeo stabilis tabella amitto vomica commodi. Curtus quod comminor iste.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/books/148"
)
book = res.json()
{
  "id": 148,
  "title": "Infit fugit defungo officia",
  "slug": "infit-fugit-defungo-officia-148",
  "authors": [
    "Julio Stehr",
    "Dolores Barrows",
    "Regina Bednar"
  ],
  "isbn": "8111438069399",
  "publisher": "Scholastic",
  "publishedYear": 2007,
  "pages": 689,
  "language": "Japanese",
  "description": "Libero ancilla desidero crinis tamdiu amitto accusamus venio. Ventosus calcar creator vis abeo stabilis tabella amitto vomica commodi. Curtus quod comminor iste.",
  "coverUrl": "https://picsum.photos/seed/book-148/400/600",
  "genres": [
    "business"
  ],
  "rating": 2.6,
  "ratingCount": 80136,
  "createdAt": "2025-08-28T16:57:04.219Z"
}
Draftbit