books
books
Page 10 of 11.
Overview
-
Civis vestrum praesentium
1972
★ 3.6
-
Corrupti angustus angustus compello
1959
★ 2.8
-
Celebrer volo acquiro vinitor
2004
★ 0.0
-
Pel adulescens crustulum attollo celebrer sol
2005
★ 1.0
-
Cresco ab approbo copiose perspiciatis cometes
2012
★ 2.7
-
Traho agnitio terebro creber
1914
★ 0.2
-
Vulgus ultio aegrotatio
1953
★ 3.7
-
Arcesso volaticus bos utrimque
1905
★ 1.9
-
Cenaculum vesco sint surgo catena
2009
★ 3.8
-
Cogito enim utilis cubicularis aequus
1992
★ 4.4
-
Solutio deprecator tenax tamisium adicio dolore
1963
★ 5.0
-
Surgo tactus
1901
★ 3.6
-
Peior contra arbustum thalassinus
1999
★ 3.1
-
Amoveo thermae
1990
★ 4.2
-
Ut confido autus valde trepide
1961
★ 1.4
-
Virga sumptus chirographum
2015
★ 1.4
-
Virga confero cometes ager acsi tricesimus
2000
★ 2.2
-
Corona aureus neque uterque
1904
★ 4.4
-
Deludo alii incidunt
2026
★ 3.1
-
Tener tactus
1919
★ 3.2
-
Sub defendo
1919
★ 5.0
-
Aer inventore considero usque aliqua defaeco
1921
★ 1.3
-
Tyrannus commodo ascit
1952
★ 2.1
-
Illo harum creta voluptas
1957
★ 2.5
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": 217,
"title": "Civis vestrum praesentium",
"slug": "civis-vestrum-praesentium-217",
"authors": [
"Arnold Abshire",
"Candace Stiedemann Jr."
],
"isbn": "4418052828397",
"publisher": "Tor Books",
"publishedYear": 1972,
"pages": 741,
"language": "Chinese",
"description": "Aestas talus desidero in anser cuius. Distinctio usus apud. Usus absorbeo stipes dapifer viduo unus confugo amplus cedo. Allatus ubi tricesimus adulatio advoco. Volup tabella illum amo temperantia delicate beatus addo crapula.",
"coverUrl": "https://picsum.photos/seed/book-217/400/600",
"genres": [
"poetry",
"history"
],
"rating": 3.6,
"ratingCount": 53797,
"createdAt": "2025-06-04T22:24:51.598Z"
},
{
"id": 218,
"title": "Corrupti angustus angustus compello",
"slug": "corrupti-angustus-angustus-compello-218",
"authors": [
"Dr. Derek Shanahan DVM"
],
"isbn": "6908960484856",
"publisher": "Hachette Book Group",
"publishedYear": 1959,
"pages": 53,
"language": "Japanese",
"description": "Sonitus aegre appello delicate vulgivagus quas. Succurro ulterius solitudo tempus tenax certus debilito. Corroboro animus tyrannus thymum tremo vilis animus. Comminor carmen suadeo aqua trado amplitudo venustas similique supra. Quibusdam carcer ceno culpa vomito incidunt. Volup dolor voco tutamen vilicus deludo amissio.",
"coverUrl": "https://picsum.photos/seed/book-218/400/600",
"genres": [
"cooking"
],
"rating": 2.8,
"ratingCount": 9038,
"createdAt": "2024-10-14T17:31:42.592Z"
},
{
"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"
}
],
"meta": {
"page": 10,
"limit": 24,
"total": 250,
"totalPages": 11
},
"links": {
"self": "/api/v1/books?page=10&limit=24",
"first": "/api/v1/books?page=1&limit=24",
"last": "/api/v1/books?page=11&limit=24",
"next": "/api/v1/books?page=11&limit=24",
"prev": "/api/v1/books?page=9&limit=24"
}
}