desmond / isbndb
ISBNdb API
dev-master
2018-01-13 15:15 UTC
Requires
- php: >=5.3.0
Requires (Dev)
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2024-11-24 04:52:45 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();