example-data.com
Menu
Browse docs and collections

books

books

Page 8 of 11.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/books?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/books?limit=25"
);
const { data, meta } = 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, ListEnvelope } from "./types/books";

const res = await fetch(
  "https://example-data.com/api/v1/books?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Book>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/books",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 169,
      "title": "Eius decet speciosus patruus summisse",
      "slug": "eius-decet-speciosus-patruus-summisse-169",
      "authors": [
        "Rita Ortiz",
        "Alice Rau"
      ],
      "isbn": "3141101011837",
      "publisher": "Knopf Doubleday",
      "publishedYear": 1988,
      "pages": 504,
      "language": "Portuguese",
      "description": "Allatus ocer coniuratio conforto thesis. Sufficio villa via solum tabgo vorago deludo contabesco ubi. Consuasor credo apparatus fuga. Bibo ventus damnatio quod basium delectatio sol comes spoliatio architecto. Vilis aeger agnitio nemo arto curtus creo. Despecto tabula amoveo.",
      "coverUrl": "https://picsum.photos/seed/book-169/400/600",
      "genres": [
        "art",
        "history"
      ],
      "rating": 4.4,
      "ratingCount": 18773,
      "createdAt": "2025-04-18T14:10:36.469Z"
    },
    {
      "id": 170,
      "title": "Thesaurus solvo thesis copia facere",
      "slug": "thesaurus-solvo-thesis-copia-facere-170",
      "authors": [
        "Essie Rutherford",
        "Theresa Kub",
        "Donnie Gislason"
      ],
      "isbn": "0746590711408",
      "publisher": "Scholastic",
      "publishedYear": 1965,
      "pages": 588,
      "language": "Spanish",
      "description": "Trans deleo cervus. Sequi nobis allatus complectus. Caute templum vesica ancilla.",
      "coverUrl": "https://picsum.photos/seed/book-170/400/600",
      "genres": [
        "cooking",
        "fantasy",
        "romance"
      ],
      "rating": 0.3,
      "ratingCount": 41371,
      "createdAt": "2026-05-16T06:02:55.618Z"
    },
    {
      "id": 171,
      "title": "Virgo agnitio appello",
      "slug": "virgo-agnitio-appello-171",
      "authors": [
        "Claudia Lindgren",
        "Roland Haley",
        "Ms. Ella Aufderhar"
      ],
      "isbn": "6252578648219",
      "publisher": "Bloomsbury",
      "publishedYear": 1977,
      "pages": 724,
      "language": "Italian",
      "description": "Necessitatibus solio creta vulpes. Armarium cupiditas tabgo. Defluo curis deserunt eligendi.",
      "coverUrl": "https://picsum.photos/seed/book-171/400/600",
      "genres": [
        "self-help"
      ],
      "rating": 1.2,
      "ratingCount": 93182,
      "createdAt": "2026-03-09T03:12:40.095Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 250,
    "totalPages": 11
  },
  "links": {
    "self": "/api/v1/books?page=8&limit=24",
    "first": "/api/v1/books?page=1&limit=24",
    "last": "/api/v1/books?page=11&limit=24",
    "next": "/api/v1/books?page=9&limit=24",
    "prev": "/api/v1/books?page=7&limit=24"
  }
}