get_book_cover
Retrieve a book’s cover image URL by providing an identifier (ISBN, OCLC, LCCN, OLID, ID) and selecting the desired size (S, M, L).
Instructions
Get the URL for a book's cover image using a key (ISBN, OCLC, LCCN, OLID, ID) and value.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | The type of identifier used (ISBN, OCLC, LCCN, OLID, ID). | |
size | No | The desired size of the cover (S, M, or L). | |
value | Yes | The value of the identifier. |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"description": "The type of identifier used (ISBN, OCLC, LCCN, OLID, ID).",
"enum": [
"ISBN",
"OCLC",
"LCCN",
"OLID",
"ID"
],
"type": "string"
},
"size": {
"description": "The desired size of the cover (S, M, or L).",
"enum": [
"S",
"M",
"L"
],
"type": "string"
},
"value": {
"description": "The value of the identifier.",
"type": "string"
}
},
"required": [
"key",
"value"
],
"type": "object"
}