List an artist's artworks
whitney_artist_artworksRetrieve paginated artworks by a specific artist ID, outputting markdown or JSON. Matches artist record to correctly include collaborative and attributed works.
Instructions
List the collection works by 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[] } with slim artwork records.
Use this rather than whitney_search_artworks with an artist name — it matches on the artist record rather than the credit line, so collaborative and attributed works are handled correctly.
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 |