get-artwork-by-id
Retrieve details and an optional image of a specific artwork from the Art Institute of Chicago using its unique ID, enabling quick access to curated art information.
Instructions
Get additional information, including an image if available, about a specific artwork by its ID from the Art Institute of Chicago. Using the value of Artwork ID from the 'search-by-title' tool.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the artwork to retrieve. | |
includeImage | No | Whether to include the artwork image in the response. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The ID of the artwork to retrieve.",
"type": "number"
},
"includeImage": {
"default": true,
"description": "Whether to include the artwork image in the response.",
"type": "boolean"
}
},
"required": [
"id"
],
"type": "object"
}