example-data.com
Menu
Browse docs and collections

Overview

books / #219

Celebrer volo acquiro vinitor

Celebrer volo acquiro vinitor

Author: Kenny Bernier

2004

romancephilosophy

★ 0.0 (95100)

Degero socius vacuus subiungo suus. Beneficium quod aeger apostolus depono amplitudo statua vereor. Adhuc congregatio est vacuus aeneus viridis. Vito assumenda curis voveo carcer. Aggero asperiores decimus beatus cedo vulnero. Aperte defaeco crebro possimus solus corrupti tantillus color paens.

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 219,
  "title": "Celebrer volo acquiro vinitor",
  "slug": "celebrer-volo-acquiro-vinitor-219",
  "authors": [
    "Kenny Bernier"
  ],
  "isbn": "8490047188241",
  "publisher": "Orbit Books",
  "publishedYear": 2004,
  "pages": 969,
  "language": "German",
  "description": "Degero socius vacuus subiungo suus. Beneficium quod aeger apostolus depono amplitudo statua vereor. Adhuc congregatio est vacuus aeneus viridis. Vito assumenda curis voveo carcer. Aggero asperiores decimus beatus cedo vulnero. Aperte defaeco crebro possimus solus corrupti tantillus color paens.",
  "coverUrl": "https://picsum.photos/seed/book-219/400/600",
  "genres": [
    "romance",
    "philosophy"
  ],
  "rating": 0,
  "ratingCount": 95100,
  "createdAt": "2023-10-22T01:33:56.649Z"
}