example-data.com

books / #104

Officia admitto

Officia admitto

Author: Judy Feil

1970

cookingbiography

★ 1.6 (17185)

Verumtamen callide tero clamo truculenter adaugeo curo commemoro amaritudo. Patruus uberrime depulso. Cuius adopto accusator coepi beatae cunctatio ab aequus.

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/books/104"
)
book = res.json()
{
  "id": 104,
  "title": "Officia admitto",
  "slug": "officia-admitto-104",
  "authors": [
    "Judy Feil"
  ],
  "isbn": "5081636420436",
  "publisher": "Scholastic",
  "publishedYear": 1970,
  "pages": 418,
  "language": "Spanish",
  "description": "Verumtamen callide tero clamo truculenter adaugeo curo commemoro amaritudo. Patruus uberrime depulso. Cuius adopto accusator coepi beatae cunctatio ab aequus.",
  "coverUrl": "https://picsum.photos/seed/book-104/400/600",
  "genres": [
    "cooking",
    "biography"
  ],
  "rating": 1.6,
  "ratingCount": 17185,
  "createdAt": "2024-02-26T02:36:36.894Z"
}
Draftbit