Art Institute of Chicago
Museum collection metadata, mostly CC0, no key
Browse the Art Institute's collection as JSON: artworks, artists, exhibitions, and IIIF image links. Metadata ships under CC0 (the description field is CC-BY), so it is friendly for apps and research. No key is required, though a contact User-Agent is appreciated.
GET https://api.artic.edu/api/v1/artworks?limit=1
{
"pagination": {
"total": 132133,
"limit": 1,
"current_page": 1
},
"data": [
{
"id": 252015,
"title": "Guided Tour",
"main_reference_number": "2019.1190",
"date_display": "2010",
"artist_display": "Judy Fiskin\nAmerican, born 1945",
"place_of_origin": "United States"
}
]
}curl "https://api.artic.edu/api/v1/artworks?limit=1"const res = await fetch("https://api.artic.edu/api/v1/artworks?limit=1");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.artic.edu/api/v1/artworks?limit=1")
print(res.json())/api/v1/artworks?limit=1PROBEDMuseum collection metadata, mostly CC0, no key
/apiApi — documented GET route.
/api/1Api details by ID (example: 1).
/api?limit=10Api — documented GET route.
/api/search?q=testSearch by query parameters.
/api/v1/artworks?limit=5Artworks — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Art Institute of Chicago: common questions
Is Art Institute of Chicago free to use?
Yes — Art Institute of Chicago is a free media API. Free tier: Free, no key. Commercial use is allowed on the free tier.
Does Art Institute of Chicago need an API key?
No — Art Institute of Chicago needs no API key or signup. You can call it straight away; rate limits still apply (60 requests/min per IP (per docs)).
Can I call Art Institute of Chicago from the browser?
Yes — Art Institute of Chicago returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Art Institute of Chicago up right now?
As of our last scheduled check, Art Institute of Chicago is new. We re-probe it every sweep — the status badge and uptime chart above always show the latest.