Art Institute of Chicago API
Overview
The Art Institute of Chicago API exposes 100,000+ artworks with images, artist bios, and exhibition data—free with no key required. Perfect for a first API project using real museum data.
Beginner Tip
Use the ?fields= parameter to request only what you need. This keeps responses small and fast, especially on mobile.
Measurement Record
What actually happened when we called this API from our own infrastructure. Every value below was recorded by the request, not copied from the provider's documentation.
- Request
- GET https://api.artic.edu/api/v1/artworks?fields=id,title,artist_display,image_id&limit=5
- Result
- HTTP 200 · application/json · 1,539 bytes · compressed
- Response time
- 144 ms (median of 3) · fastest 134 ms
- Transport
- TLSv1.3 · TLS_AES_128_GCM_SHA256 · certificate issued by Amazon
- Browser CORS
- Allowed — Access-Control-Allow-Origin: *
- Served by
- Apache/2.4.66 (Amazon Linux) OpenSSL/3.2.2
- Recorded
- 2026-08-10
Fields Returned
Top-level fields present in the response we captured, with the type and value we actually received.
| Field | Type | Value received |
|---|---|---|
| pagination | object | {6 fields} |
| data | array | [1 item] |
| info | object | {3 fields} |
| config | object | {2 fields} |
Captured Response
Captured from a real request to https://api.artic.edu/api/v1/artworks?fields=id,title,artist_display,image_id&limit=5 on 2026-08-10. Long arrays and nested objects are truncated to keep the shape readable.
{
"pagination": {
"total": 132681,
"limit": 5,
"offset": 0,
"total_pages": 26537,
"current_page": 1,
"next_url": "https://api.artic.edu/api/v1/artworks?page=2&fields=id%2Ctitle%2Cartist_display%2Cimage_id&limit=5"
},
"data": [
{
"id": 70720,
"title": "Horse",
"artist_display": "China",
"image_id": "c99813c1-2f72-0278-14ad-9c6510213c97"
}
],
"info": {
"license_text": "The `description` field in this response is licensed under a Creative Commons Attribution 4.0 Generic License (CC-By) and the Terms and Conditions of artic.e…",
"license_links": [
"https://creativecommons.org/publicdomain/zero/1.0/"
],
"version": "1.14"
},
"config": {
"iiif_url": "https://www.artic.edu/iiif/2",
"website_url": "http://www.artic.edu"
}
} Field Reference
id Unique numeric identifier for the artwork title Title of the artwork artist_display Artist name, nationality, and dates as a formatted string image_id IIIF image identifier used to build the artwork image URL Implementation Example
Calls a real endpoint of this API. Replace any placeholder credentials with your own key.
const url = "https://api.artic.edu/api/v1/artworks?fields=id,title,artist_display,image_id&limit=5";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
How This API Fails
We deliberately sent this API a broken request and recorded exactly what came back on 2026-08-10. Knowing the shape of an error before you hit it makes error handling much easier to write.
{
"status": 400,
"error": "Invalid syntax",
"detail": "The identifier syntax is invalid."
} Common Errors & Troubleshooting
Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.
Measured Score Breakdown
Live HTTP request to the API endpoint
Fully tested on Aug 10, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Colormind
⭐ Beginner's PickColormind generates harmonious 5-color palettes using a machine learning model trained on real design work.
ColourLovers
⭐ Beginner's PickColourLovers lets you browse millions of community-created color palettes and patterns.
EmojiHub
⭐ Beginner's PickEmojiHub returns random or category-filtered emojis with their Unicode name, character, and HTML entity.
Icon Horse
⭐ Beginner's PickIcon Horse fetches the best available favicon for any website URL with a graceful fallback when none exists.
Icons8
⭐ Beginner's PickIcons8 offers a CDN-based icon delivery system where you can embed icons directly in HTML using a simple URL pattern without any API calls or keys.