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.

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))