Discover/LACMA API
live

LACMA APIlacma.org

Access LACMA exhibitions, art collection search, events, and visitor info via a structured API. 9 endpoints returning titles, images, dates, and metadata.

Endpoint health
verified 4d ago
get_exhibition_detail
get_visit_info
get_events_and_programs
get_museum_info
search_collection
9/9 passing latest checkself-healing
Endpoints
9
Updated
26d ago

What is the LACMA API?

The LACMA API provides 9 endpoints for retrieving structured data from the Los Angeles County Museum of Art, covering current, upcoming, and past exhibitions, a searchable art collection, events calendar, and visitor information. The search_collection endpoint accepts a keyword query and returns paginated artwork records including artist, date, medium, and image URL, while get_artwork_detail resolves any numeric artwork ID to its full metadata.

Try it

No input parameters required.

api.parse.bot/scraper/65ccd905-8c35-47f2-b77b-326dd029b03d/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/65ccd905-8c35-47f2-b77b-326dd029b03d/get_current_exhibitions' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace lacma-org-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: LACMA API — browse exhibitions, search artworks, check events."""
from parse_apis.lacma_api import Lacma, NotFound

client = Lacma()

# List current exhibitions — limit caps total items fetched
for exh in client.exhibitionsummaries.current(limit=3):
    print(exh.title, exh.dates, exh.location)

# Drill into the first current exhibition's full details
summary = client.exhibitionsummaries.current(limit=1).first()
if summary:
    detail = summary.details()
    print(detail.title, detail.dates, detail.description[:100])

# Search the art collection by keyword
artwork = client.artworks.search(query="monet", limit=1).first()
if artwork:
    print(artwork.title, artwork.artist, artwork.dated)

# Fetch a specific artwork by ID — typed error handling
try:
    piece = client.artworks.get(id="12776")
    print(piece.title, piece.artist, piece.medium)
except NotFound as exc:
    print(f"Artwork not found: {exc}")

# Browse upcoming events
for event in client.events.list(limit=3):
    print(event.title, event.date, event.category)

print("exercised: exhibitionsummaries.current / details / artworks.search / artworks.get / events.list")
All endpoints · 9 totalmissing one? ·

Get current exhibitions at LACMA. Returns exhibitions currently on view with titles, dates, locations, images, and descriptions. Results are a single page of all current exhibitions.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "exhibitions": "array of exhibition objects with title, url, image, dates, location, and description"
  },
  "sample": {
    "data": {
      "exhibitions": [
        {
          "url": "https://www.lacma.org/art/exhibition/andrew-thomas-huang-deer-nine-colors",
          "dates": "May 31 - June 14, 2026",
          "image": "https://www-images.lacma.org/s3fs-public/styles/exhibition_listing/public/2026-05/EX9644_02.jpg",
          "title": "Andrew Thomas Huang: The Deer of Nine Colors",
          "location": "BCAM, Level 2",
          "description": "Andrew Thomas Huang's The Deer of Nine Colors is a cyber-futuristic retelling of a Buddhist folktale..."
        }
      ]
    },
    "status": "success"
  }
}

About the LACMA API

Exhibitions and Events

Three listing endpoints — get_current_exhibitions, get_upcoming_exhibitions, and get_past_exhibitions — each return a full page of exhibition objects. Every object includes title, url, image, dates, location, and description. For deeper detail on any single exhibition, get_exhibition_detail accepts a slug (the last path segment of an exhibition URL) and returns the same fields plus the full description text. The get_events_and_programs endpoint returns the events calendar with title, date, time, category, status, description, location, and image per event.

Art Collection Search

search_collection accepts a required query string and an optional 0-based page integer. Each page returns up to 48 results, and the response includes a total count of all matches so you can calculate how many pages to iterate. Each result in the results array carries an id, title, artist, dated, image, and url. Pass any id value to get_artwork_detail to retrieve metadata fields — Artist, Date, and Medium — along with the primary image URL and artwork page URL.

Visitor Information

Two endpoints cover practical visit planning. get_museum_info returns the museum address, an hours array, and a social_media URL list sourced from the LACMA homepage. get_visit_info returns a longer description string covering ticketing, dining, the museum store, and policies, along with the URL to the plan-your-visit page. These endpoints require no input parameters.

Reliability & maintenanceVerified

The LACMA API is a managed, monitored endpoint for lacma.org — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when lacma.org changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official lacma.org API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
9/9 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a gallery app that surfaces current LACMA exhibitions with images and date ranges from get_current_exhibitions
  • Create an art research tool that lets users search the collection by artist name and retrieve medium and date metadata via get_artwork_detail
  • Sync a travel itinerary platform with LACMA's events calendar using get_events_and_programs data including date, time, and location
  • Power a museum discovery widget that shows upcoming exhibitions with cover images and descriptions from get_upcoming_exhibitions
  • Aggregate LACMA visitor logistics — hours, address, ticketing — into a city guide app using get_museum_info and get_visit_info
  • Track exhibition turnover by diffing get_past_exhibitions responses over time to detect newly closed shows
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does LACMA have an official developer API?+
LACMA does not publish a documented public developer API for general use. Their collection data has historically been shared through initiatives like the Collections as Data project, but there is no open REST API with documented endpoints available to developers at this time.
What does `search_collection` return, and how does pagination work?+
It returns up to 48 artwork objects per page, each with id, title, artist, dated, image, and url. The total field in the response tells you the full result count. Pages are 0-based, so pass page=1 for the second page. Iterate until (page + 1) * 48 >= total to exhaust results.
Do the exhibition endpoints return exhibition wall text or catalog essays?+
The description field in get_exhibition_detail returns the full descriptive text available on the exhibition page, but extended catalog essays or wall-panel text are not currently part of the response. You can fork this API on Parse and revise it to add an endpoint targeting that content if the source page exposes it.
Is artwork provenance or acquisition history available through `get_artwork_detail`?+
Not currently. get_artwork_detail returns Artist, Date, and Medium from the metadata object, plus the primary image and page URL. Provenance, credit lines, and acquisition history are not included in the current response shape. You can fork this API on Parse and revise it to capture additional metadata fields from the artwork page.
Are exhibition listing results paginated?+
No. Each of the three exhibition listing endpoints (get_current_exhibitions, get_upcoming_exhibitions, get_past_exhibitions) returns a single page containing all available exhibitions in that category. There are no pagination parameters for these endpoints.
Page content last updated . Spec covers 9 endpoints from lacma.org.
Related APIs in EntertainmentSee all →
arts.ca.gov API
Discover California arts funding opportunities by browsing grant programs, searching awarded grantees, and accessing resources from the California Arts Council. Find relevant grants and grantee information while staying updated with the latest news and resources in California's arts funding landscape.
artsy.net API
Browse and search across 300,000+ artists to discover detailed profiles with biographies, nationalities, career insights, and artwork counts. Find artists alphabetically or by name to explore their complete creative background and body of work.
riseart.com API
Search and explore artworks by title, artist, or style, then view detailed information and high-quality images of paintings and artist portfolios from Rise Art's curated collection. Discover new artists and browse their complete galleries to find pieces that match your taste.
axs.com API
Search for events, performers, and venues across AXS.com to find tickets, pricing, and availability information in your area or by category. Browse featured events, explore venues by city, and access detailed event information all in one place.
lacity.org API
Access LA City Council meeting schedules, archived meetings, and official documents including council files, referrals, and board commission information. Search and retrieve detailed council files, meeting minutes, and journals to stay informed on city government activities and decisions.
vangoghmuseum.nl API
Explore and search Van Gogh's complete collection of paintings, drawings, and letters with detailed information and high-resolution images. Browse artworks using filters and pagination to discover pieces by specific criteria and access in-depth metadata about each work.
fineartamerica.com API
Search and discover millions of artworks by style, medium, and artist, then browse detailed artist profiles and portfolios to connect directly with creators. Reach out to artists through integrated contact forms to inquire about commissions, purchases, or collaborations.
dpm.org.cn API
Search and explore the Palace Museum's vast collection of artifacts organized by category and dynasty, then view detailed information about specific items. Discover historical objects spanning different periods and classifications to learn about the museum's treasures.