Art Institute of Chicago API

Beginner's Pick Art & Design / No Auth Required Beginner HTTPS CORS
Free to Use
81 A
Measured Score 0 50 100 Speed 21/30 Consistency 17/20 Security 20/20 Browser access 15/15 Transparency 8/15 TESTED 2026-08-10

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.

JSON Response · Captured
{
  "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.

Request
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.

HTTP 400 Requesting a path that does not exist application/json
{
  "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.

Slow response on large queries Fetching all fields for many artworks at once
Use ?fields=id,title,image_id&limit=10 to reduce payload size
400 Bad Request on deep pagination Using high page numbers beyond the 10,000 result window
Switch to cursor-based pagination with the after parameter instead of page=
Image URL returns 404 image_id is null for artworks without digital images
Check that image_id is not null before building the IIIF image URL

Measured Score Breakdown

Live HTTP request to the API endpoint

Speed 21/30
Consistency 17/20
Security 20/20
Browser access 15/15
Transparency 8/15
Endpoint Response Time 144ms

Fully tested on Aug 10, 2026

Technical Specifications

Auth No Auth
HTTPS REQUIRED
CORS YES
Category Art & Design
Difficulty Beginner
Endpoint last called: 2026-08-10

Related Tags

Similar APIs

View All →