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

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

This package is not auto-updated.

Last update: 2025-10-12 09:36:46 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();