desmond / isbndb
ISBNdb API
Installs: 35
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 1
Open Issues: 1
pkg:composer/desmond/isbndb
Requires
- php: >=5.3.0
Requires (Dev)
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2025-10-26 09:50:28 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();