UNPKG

openapi-directory

Version:

Building & bundling https://github.com/APIs-guru/openapi-directory for easy use from JS

1 lines 5.38 kB
{"openapi":"3.0.0","info":{"description":"Definition of ISBNdb.com API","title":"ISBNdb","version":"1.0.0","x-apisguru-categories":["open_data"],"x-logo":{"url":"https://isbndb.com/sites/default/files/ISBN-295x62_4.jpg"},"x-origin":[{"format":"swagger","url":"https://isbndb.com/modules/isbndb_api_docs/swagger.json","version":"2.0"}],"x-providerName":"isbndb.com"},"paths":{"/author/{name}":{"get":{"description":"Returns the name and a list of books by the author.","parameters":[{"description":"A string to search for in the Author's database","in":"path","name":"name","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","headers":{"Access-Control-Allow-Origin":{"schema":{"type":"string"}}},"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Author"}}}},"404":{"description":"Author not found"}},"security":[{"api_key":[]}],"summary":"Gets author details","tags":["Author"]}},"/authors/{query}":{"get":{"description":"This returns a list of authors whos name matches the given query","parameters":[{"in":"path","name":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","headers":{"Access-Control-Allow-Origin":{"schema":{"type":"string"}}}}},"security":[{"api_key":[]}],"summary":"Search authors","tags":["Author"]}},"/book/{isbn}":{"get":{"description":"Returns the book details","parameters":[{"in":"path","name":"isbn","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","headers":{"Access-Control-Allow-Origin":{"schema":{"type":"string"}}},"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Book"}}}},"404":{"description":"Book not found"}},"security":[{"api_key":[]}],"summary":"Gets book details","tags":["Book"]}},"/books/{query}":{"get":{"description":"This returns a list of books that match the query","parameters":[{"in":"path","name":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","headers":{"Access-Control-Allow-Origin":{"schema":{"type":"string"}}}}},"security":[{"api_key":[]}],"summary":"Search books","tags":["Book"]}},"/publisher/{name}":{"get":{"description":"Returns details and a list of books by the publisher.","parameters":[{"in":"path","name":"name","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","headers":{"Access-Control-Allow-Origin":{"schema":{"type":"string"}}},"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Publisher"}}}},"404":{"description":"Publisher not found"}},"security":[{"api_key":[]}],"summary":"Gets publisher details","tags":["Publisher"]}},"/publishers/{query}":{"get":{"description":"This returns a list of publishers that match the given query","parameters":[{"in":"path","name":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","headers":{"Access-Control-Allow-Origin":{"schema":{"type":"string"}}}}},"security":[{"api_key":[]}],"summary":"Search publishers","tags":["Publisher"]}},"/stats":{"get":{"responses":{"200":{"description":"200 response","headers":{"Access-Control-Allow-Origin":{"schema":{"type":"string"}}}}},"security":[{"api_key":[]}]}},"/subject/{name}":{"get":{"description":"Returns details and a list of books from the subject.","parameters":[{"in":"path","name":"name","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","headers":{"Access-Control-Allow-Origin":{"schema":{"type":"string"}}},"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Subject"}}}},"404":{"description":"Subject not found"}},"security":[{"api_key":[]}],"summary":"Gets subject books","tags":["Subject"]}},"/subjects/{query}":{"get":{"description":"This returns a list of subjects that match the given query","parameters":[{"in":"path","name":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","headers":{"Access-Control-Allow-Origin":{"schema":{"type":"string"}}}}},"security":[{"api_key":[]}],"summary":"Search subjects","tags":["Subject"]}}},"servers":[{"url":"https://api.isbndb.com"}],"components":{"securitySchemes":{"api_key":{"in":"header","name":"x-api-key","type":"apiKey"}},"schemas":{"Author":{"properties":{"books":{"items":{"properties":{"isbn":{"type":"string"}},"type":"object"},"type":"array"},"name":{"type":"string"}},"type":"object"},"Book":{"properties":{"authors":{"items":{"type":"string"},"type":"array"},"binding":{"type":"string"},"date_published":{"format":"date-time","type":"string"},"dewey_decimal":{"type":"string"},"dimensions":{"type":"string"},"edition":{"type":"string"},"excerpt":{"type":"string"},"format":{"type":"string"},"image":{"type":"string"},"isbn":{"type":"string"},"isbn13":{"type":"string"},"language":{"type":"string"},"msrp":{"type":"string"},"overview":{"type":"string"},"pages":{"type":"integer"},"publisher":{"type":"string"},"reviews":{"items":{"type":"string"},"type":"array"},"subjects":{"items":{"type":"string"},"type":"array"},"synopsys":{"type":"string"},"title":{"type":"string"},"title_long":{"type":"string"}},"type":"object"},"Publisher":{"properties":{"books":{"items":{"properties":{"isbn":{"type":"string"}},"type":"object"},"type":"array"},"name":{"type":"string"}},"type":"object"},"Subject":{"properties":{"parent":{"type":"string"},"subject":{"type":"string"}},"type":"object"}}}}