get_book_by_id
Retrieve detailed book information by specifying its identifier type (ISBN, LCCN, OCLC, OLID) and value using the Open Library API.
Instructions
Get detailed information about a book using its identifier (ISBN, LCCN, OCLC, OLID).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
idType | Yes | The type of identifier used (ISBN, LCCN, OCLC, OLID). | |
idValue | Yes | The value of the identifier. |
Input Schema (JSON Schema)
{
"properties": {
"idType": {
"description": "The type of identifier used (ISBN, LCCN, OCLC, OLID).",
"enum": [
"isbn",
"lccn",
"oclc",
"olid"
],
"type": "string"
},
"idValue": {
"description": "The value of the identifier.",
"type": "string"
}
},
"required": [
"idType",
"idValue"
],
"type": "object"
}