example-data.com
Menu
Browse docs and collections

Overview

books / #178

Trans cariosus

Trans cariosus

Author: Cathy Klocko MD

1959

young-adultcookingfiction

★ 3.7 (2872)

Arx cubo architecto. Adimpleo harum sono pecco defero alter. Sequi comis patior. Verecundia demens distinctio terga thermae advenio barba. Nihil delicate atque. Cenaculum depopulo curiositas audacia vox supellex.

Component variants

Related

Referenced by

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/books/178" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/books/178"
);
const book = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/books.d.ts https://example-data.com/types/books.d.ts
import type { Book } from "./types/books";

const res = await fetch(
  "https://example-data.com/api/v1/books/178"
);
const book = (await res.json()) as Book;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/books/178"
)
book = res.json()

Response

{
  "id": 178,
  "title": "Trans cariosus",
  "slug": "trans-cariosus-178",
  "authors": [
    "Cathy Klocko MD"
  ],
  "isbn": "9824777641640",
  "publisher": "Macmillan Publishers",
  "publishedYear": 1959,
  "pages": 211,
  "language": "Italian",
  "description": "Arx cubo architecto. Adimpleo harum sono pecco defero alter. Sequi comis patior. Verecundia demens distinctio terga thermae advenio barba. Nihil delicate atque. Cenaculum depopulo curiositas audacia vox supellex.",
  "coverUrl": "https://picsum.photos/seed/book-178/400/600",
  "genres": [
    "young-adult",
    "cooking",
    "fiction"
  ],
  "rating": 3.7,
  "ratingCount": 2872,
  "createdAt": "2025-07-10T03:43:25.393Z"
}