API · /artic-api

Art Institute of Chicago API

healthy 3,339 Subscribers

The Art Institute of Chicago collection as an API — clean JSON, no key. Run a full-text search across 130,000+ artworks and open any piece for its full detail: title, artist, dates, medium, dimensions, place of origin, department and classification, credit line, provenance and exhibition history, whether it is public domain or on view, and high-resolution IIIF images. Browse the collection, search artists for their biography and life dates, and list the museum's exhibitions. Live data straight from artic.edu, one of the world's great art museums. A distinct collection — ideal for art, education and culture apps, image galleries, museum kiosks and creative tools. 7 data endpoints. Authenticated with an x-oanor-key; fair-use rate limits per plan.

api.oanor.com/artic-api
Get an API key Try in playground → Contact provider

Machine-readable spec so AI agents can integrate this API.

/api/artic-api/openapi.json
/api/artic-api/llms.txt

Discovery: GET /api/index.json lists every API.

API health

healthy
Uptime
100.00%
Server probes · 24h
Avg latency
342 ms
Server probes · 24h
Subscribers
3,339
active
Total calls
16
last 7 days
status Full status page → · 24 probes/24h

Pricing

Pick a tier — billed monthly, cancel anytime.

Free

Free

  • 4,000 calls / month
  • 5 requests / second
  • Hard cap (429 above quota, no overage)
  • 4,000 calls/month
  • 5 req/sec
  • All 7 data endpoints
  • High-res IIIF images
  • No credit card
Sign in to subscribe

Starter

€5.60 /month

  • 51,000 calls / month
  • 15 requests / second
  • Hard cap (429 above quota, no overage)
  • 51,000 calls/month
  • 15 req/sec
  • Search, artworks & artists
  • Email support
Sign in to subscribe

Pro

€24.50 /month

  • 265,000 calls / month
  • 30 requests / second
  • Hard cap (429 above quota, no overage)
  • 265,000 calls/month
  • 30 req/sec
  • Galleries & culture apps
  • Priority support
Sign in to subscribe

Mega

€83.00 /month

  • 1,080,000 calls / month
  • 80 requests / second
  • Hard cap (429 above quota, no overage)
  • 1,080,000 calls/month
  • 80 req/sec
  • Platform & education scale
  • Dedicated SLA
Sign in to subscribe

Built by

Related APIs

Other APIs with overlapping tags.

V&A Museum API

The Victoria and Albert Museum (V&A) collection as an API — over 1.2 million objects spanning 5,000 years of art, design and performance, from textiles, ceramics and furniture to fashion, photographs, prints and jewellery. Search and filter the collection by keyword, maker, place of origin or material/technique, optionally limited to objects that carry an image. Fetch any object by its system number for the full record: title, makers, production date, place, materials and techniques, categories and styles, gallery location and high-resolution IIIF imagery. Browse every work by a given maker (e.g. William Morris), or pull a random object. Real museum data, no key needed upstream. Ideal for art and design apps, galleries and slideshows, education and cultural research.

api.oanor.com/vam-api

Cleveland Museum of Art API

The Cleveland Museum of Art Open Access collection as an API — more than 60,000 artworks, over 30,000 of them with high-resolution, CC0 (public-domain) images you can use freely. Search and filter the collection by keyword, department, artwork type or artist, optionally limited to pieces that carry an image. Fetch any artwork by id for its full record: title, creators, creation date, culture, medium and technique, dimensions, department, description and "did you know" notes, on-view status and image URLs. Browse all works by a given creator, or pull a random artwork. Real museum data, no key needed upstream. Ideal for art apps, galleries and slideshows, education, generative-art projects and cultural research.

api.oanor.com/clevelandart-api

Picture Framing API

Picture-framing maths as an API, computed locally and deterministically — the mat-cutting and moulding numbers a framer or artist measures a job by. The mat endpoint sizes the mat board around an artwork: the window opening is the art minus a small overlap on each edge (≈ 0.25 inch so the mat holds the print), and the outer mat is the window plus the border widths — give one border or per-side borders, with a heavier bottom for a balanced, bottom-weighted mat, so an 8×10 print with a 2-inch border has a 7.5×9.5 window and an 11.5×13.5 mat. The moulding endpoint computes the frame stick needed: length = inner perimeter + 8 × the moulding width, because each of the four 45-degree mitred corners adds one moulding width — an 11.5×13.5 frame in 1.5-inch moulding needs 62.5 inches, plus any waste allowance. Everything is computed locally and deterministically, so it is instant and private. Ideal for picture-framing, custom-framing, art-gallery and DIY app developers, mat-cutter and moulding-estimating tools, and framing education. Pure local computation — no key, no third-party service, instant. Imperial inches in; lengths in inches and feet. Live, nothing stored. 2 compute endpoints. A planning aid — measure twice, cut once.

api.oanor.com/framing-api

Met Museum API

Search The Metropolitan Museum of Art open-access collection of 470,000+ objects, fetch full artwork details — artist, date, medium, culture, department, public-domain status and high-resolution images — and list the museum departments. Perfect for art, education, culture and gallery apps.

api.oanor.com/museum-api

Frequently asked questions

Quick answers about pricing, quotas, and integration.

How do I get an API key for Art Institute of Chicago API?
Sign up for free at oanor.com, generate an API key from the developer dashboard, and call Art Institute of Chicago API with the x-oanor-key header. No credit card needed for the free tier.
What's the rate limit for Art Institute of Chicago API?
Free tier allows 1 request per second. Paid plans scale up to 50 requests per second on the Mega tier. Hard limits return HTTP 429 above the quota — no surprise overage charges.
How much does Art Institute of Chicago API cost?
Art Institute of Chicago API has a free tier with 100 calls / month. Paid plans start at €5.60 / month with higher quotas and faster rate limits.
Can I cancel my subscription anytime?
Yes. Plans are billed monthly and you can cancel anytime from your billing dashboard. No long-term contracts and no cancellation fee.
Is Art Institute of Chicago API GDPR-compliant?
All requests to Art Institute of Chicago API go through our EU-based gateway. Your upstream API key never leaves our server and no personal data is shared with the upstream provider beyond the request you send.

Pick an endpoint from the list on the left to see its details and try it.

Code snippets

Sign up to get an API key, then call any path under your slug.

curl https://api.oanor.com/artic-api/SOME_PATH \
  -H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/artic-api/SOME_PATH", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/artic-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
    "https://api.oanor.com/artic-api/SOME_PATH",
    headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())

Ratings

Sign in to rate.

No reviews yet.

Discussion

Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.

Sign in to start a thread or reply.

Sign in

New thread

/ 4000

📌 Pinned 🔒 Locked

·

· ·

/ 4000

🔒 This thread is locked — no new replies.

  • No threads yet — start the discussion.

Support

Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.

Sign in to open a support ticket.

Sign in

Open new ticket

Describe what you need help with. The provider team gets an email and replies on the ticket page.

  • No tickets yet for this API.

Subscription active — calls can start immediately.

Send your first request —

Subscription active — copy a snippet and fire off your first call.