Officia admitto
Author: Judy Feil
1970
cookingbiography
★ 1.6 (17185)
Verumtamen callide tero clamo truculenter adaugeo curo commemoro amaritudo. Patruus uberrime depulso. Cuius adopto accusator coepi beatae cunctatio ab aequus.
Overview
books / #104
Author: Judy Feil
1970
★ 1.6 (17185)
Verumtamen callide tero clamo truculenter adaugeo curo commemoro amaritudo. Patruus uberrime depulso. Cuius adopto accusator coepi beatae cunctatio ab aequus.
Officia admitto
1970
★ 1.6
Request
curl example
curl -sS \ "https://example-data.com/api/v1/books/104" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/books/104" ); 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/104"
);
const book = (await res.json()) as Book; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/books/104"
)
book = res.json() Response
{
"id": 104,
"title": "Officia admitto",
"slug": "officia-admitto-104",
"authors": [
"Judy Feil"
],
"isbn": "5081636420436",
"publisher": "Scholastic",
"publishedYear": 1970,
"pages": 418,
"language": "Spanish",
"description": "Verumtamen callide tero clamo truculenter adaugeo curo commemoro amaritudo. Patruus uberrime depulso. Cuius adopto accusator coepi beatae cunctatio ab aequus.",
"coverUrl": "https://picsum.photos/seed/book-104/400/600",
"genres": [
"cooking",
"biography"
],
"rating": 1.6,
"ratingCount": 17185,
"createdAt": "2024-02-26T02:36:36.894Z"
}