Necessitatibus vir vinco aperio
Author: Forrest Schulist-Homenick
1960
romanceart
★ 3.3 (65003)
Uredo coerceo teneo cometes triduana aegrotatio bestia demonstro minima. Caute torrens arbor tabgo. Cavus curtus aranea. Tabgo talio supra carbo.
Overview
books / #249
Author: Forrest Schulist-Homenick
1960
★ 3.3 (65003)
Uredo coerceo teneo cometes triduana aegrotatio bestia demonstro minima. Caute torrens arbor tabgo. Cavus curtus aranea. Tabgo talio supra carbo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/books/249" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/books/249" ); 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/249"
);
const book = (await res.json()) as Book; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/books/249"
)
book = res.json() Response
{
"id": 249,
"title": "Necessitatibus vir vinco aperio",
"slug": "necessitatibus-vir-vinco-aperio-249",
"authors": [
"Forrest Schulist-Homenick"
],
"isbn": "5589617600458",
"publisher": "HarperCollins",
"publishedYear": 1960,
"pages": 139,
"language": "English",
"description": "Uredo coerceo teneo cometes triduana aegrotatio bestia demonstro minima. Caute torrens arbor tabgo. Cavus curtus aranea. Tabgo talio supra carbo.",
"coverUrl": "https://picsum.photos/seed/book-249/400/600",
"genres": [
"romance",
"art"
],
"rating": 3.3,
"ratingCount": 65003,
"createdAt": "2024-08-28T18:03:38.619Z"
}