desmond/isbndb

dev-master 2018-01-13 15:15 UTC

This package is not auto-updated.

Last update: 2024-05-26 02:19:09 UTC


README

PHP composer for isbndb.com API service.

API (endpoints) Implemented

  • /book
  • /books
  • /author
  • /authors
  • /publisher
  • /publishers
  • /subject
  • /subjects
  • /category
  • /categories
  • /prices

Usage

Book

$api_key = 'YOUR_API_KEY';
$query_string = '084930315X';  // 10 or 13 digits ISBN or book id

$book = new ISBNdb\Book($api_key, $query_string);
$title = $book->getTitle();