example-data.com
Menu
Browse docs and collections

Overview

books / #210

Uterque abstergo

Uterque abstergo

Author: Inez Haag

1921

non-fictionarthistory

★ 1.3 (58689)

Vado rerum quia voluptates arguo. Tergo delibero culpa sortitus acquiro turba. Eveniet voluptate modi venia supplanto argentum.

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/books/210"
);
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/210"
);
const book = (await res.json()) as Book;

Python example

import requests

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

Response

{
  "id": 210,
  "title": "Uterque abstergo",
  "slug": "uterque-abstergo-210",
  "authors": [
    "Inez Haag"
  ],
  "isbn": "6260673908729",
  "publisher": "Vintage Books",
  "publishedYear": 1921,
  "pages": 209,
  "language": "Japanese",
  "description": "Vado rerum quia voluptates arguo. Tergo delibero culpa sortitus acquiro turba. Eveniet voluptate modi venia supplanto argentum.",
  "coverUrl": "https://picsum.photos/seed/book-210/400/600",
  "genres": [
    "non-fiction",
    "art",
    "history"
  ],
  "rating": 1.3,
  "ratingCount": 58689,
  "createdAt": "2025-03-11T21:43:06.532Z"
}