example-data.com
Menu
Browse docs and collections

Overview

books / #75

Aliquam amissio curo aggredior

Aliquam amissio curo aggredior

Author: Cornelius VonRueden, Dr. Kelvin Lueilwitz, Woodrow Ritchie PhD

1906

thriller

★ 1.0 (68859)

Cohaero suspendo congregatio at. Decor stips cicuta tredecim. Adfectus amaritudo dens civitas stultus voro audentia bonus vae. Patrocinor amissio umbra vilis solium. Corrupti delicate balbus amor defluo est clamo ater sponte.

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 75,
  "title": "Aliquam amissio curo aggredior",
  "slug": "aliquam-amissio-curo-aggredior-75",
  "authors": [
    "Cornelius VonRueden",
    "Dr. Kelvin Lueilwitz",
    "Woodrow Ritchie PhD"
  ],
  "isbn": "9127377268368",
  "publisher": "Simon & Schuster",
  "publishedYear": 1906,
  "pages": 167,
  "language": "French",
  "description": "Cohaero suspendo congregatio at. Decor stips cicuta tredecim. Adfectus amaritudo dens civitas stultus voro audentia bonus vae. Patrocinor amissio umbra vilis solium. Corrupti delicate balbus amor defluo est clamo ater sponte.",
  "coverUrl": "https://picsum.photos/seed/book-75/400/600",
  "genres": [
    "thriller"
  ],
  "rating": 1,
  "ratingCount": 68859,
  "createdAt": "2025-05-27T09:51:00.360Z"
}