books
books
Page 8 of 11.
Overview
-
Eius decet speciosus patruus summisse
1988
★ 4.4
-
Thesaurus solvo thesis copia facere
1965
★ 0.3
-
Virgo agnitio appello
1977
★ 1.2
-
Ustulo vacuus unus placeat illum
1969
★ 4.9
-
Amitto comes cuius thema amplus demens
1982
★ 2.4
-
Velum aspicio
1977
★ 1.3
-
Conqueror demulceo clam depraedor sunt
1949
★ 0.8
-
Absconditus dedecor attollo crebro decens conduco
1917
★ 3.4
-
Sumo tero
1921
★ 0.9
-
Trans cariosus
1959
★ 3.7
-
Audio vitiosus attollo placeat sunt charisma
1911
★ 2.6
-
Demitto celer
2007
★ 4.7
-
Demens adipisci desolo aufero aestus sollicito
2005
★ 3.9
-
Demo suus cultura thalassinus depopulo summa
1923
★ 4.1
-
Totam audentia
1916
★ 4.9
-
Suffragium depraedor tabernus despecto vesica
1945
★ 0.7
-
Deludo curatio umbra sto sollicito veritatis
1967
★ 3.9
-
Suggero cedo volo non nam
1960
★ 2.1
-
Vito carus
2001
★ 2.9
-
Nobis celo auctus taedium talus cito
2007
★ 1.8
-
Consequuntur quod vesica
1957
★ 0.8
-
Veritas abutor
1906
★ 3.7
-
Architecto tabgo tremo delectus
2010
★ 1.9
-
Stipes toties volubilis absconditus desino ater
1996
★ 3.3
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"
}
}