List an artist's exhibitions
whitney_artist_exhibitionsFind exhibitions by a specific artist at the Whitney Museum. Provide an artist ID to retrieve paginated exhibition details and counts.
Instructions
List Whitney exhibitions featuring one artist.
Args:
id (string): artist ID
page (number, default 1), limit (number, 1-30, default 10)
response_format ('markdown' | 'json', default 'markdown')
Returns: { total, count, page, has_more, next_page?, results[] }.
Exhibition fields are passed through generically (HTML stripped, long prose truncated), because the Museum documents these fields as subject to change. Coverage is fuller for recent decades than for the Museum's early history.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Artist ID — a TMS ID like '962', or an internal reference prefixed with 'T' | |
| page | No | 1-based page number; the API returns 30 records per page | |
| limit | No | Maximum records to return from the fetched page (1-30). Keep this low unless you need the detail — Whitney records are verbose. | |
| response_format | No | Output format: 'markdown' for reading, 'json' for machine processing | markdown |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| note | No | Advisory note about trimming or pagination | |
| page | Yes | Page that was fetched | |
| count | Yes | Records returned in this response | |
| total | Yes | Total matching records across all pages | |
| source | Yes | Attribution for the data, as the Whitney's terms ask for | |
| results | Yes | The records | |
| has_more | Yes | Whether further pages exist | |
| next_page | No | Page number to request next |