Seussology API Alpha
The Seussology API is a RESTful web service to obtain information about books written by Theodore Geisel, better known as Dr. Seuss.
This API is currently in alpha. Functionality and data is still being added.
Routes
At this time, only GET methods are supported.
- GET /api/books
- GET /api/books/1
- GET /api/books/1/quotes
- GET /api/quotes
- GET /api/quotes/1
- GET /api/quotes/random/10
Usage
Retrieve all the books using fetch
fetch('https://seussology.info/api/books')
.then(response => response.json())
.then(json => console.log(json))
Retrieve a book by the book's ID using fetch
fetch('https://seussology.info/api/books/1')
.then(response => response.json())
.then(json => console.log(json))