Art Collection Search
Search art records across global open collections
Search artworks across museum APIs, cultural aggregators, and open knowledge sources. Browse image-rich records, compare institutions, open full artwork details, and look up artist background for global art discovery.
Search artworks across open museum collections, cultural aggregators, and global art-adjacent sources. Returns normalized results with images, institutions, artists, dates, and record links.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "art-collection-search",
"skill": "search_artworks",
"input": {
"query": "monet",
"source": "all",
"limit": 6
}
}' \
https://api.toolrouter.com/v1/tools/callGet the normalized public record for one artwork from any supported provider. Returns richer metadata including institution, rights, dimensions, description, and source links.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "art-collection-search",
"skill": "artwork_details",
"input": {
"source": "artic",
"artwork_id": "16568"
}
}' \
https://api.toolrouter.com/v1/tools/callSearch artist records across the Art Institute of Chicago and Wikidata. Returns artist names, life dates, short bios, and links to canonical source pages.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "art-collection-search",
"skill": "search_artists",
"input": {
"query": "monet",
"source": "all",
"limit": 5
}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"art-collection-search","skill":"search_artworks","input":{}}' \
https://api.toolrouter.com/v1/tools/call