Met Museum Open Access Art Scraper avatar

Met Museum Open Access Art Scraper

Pricing

Pay per event

Go to Apify Store
Met Museum Open Access Art Scraper

Met Museum Open Access Art Scraper

Scrape The Met's open-access collection API. Returns full metadata for 490k+ objects: title, artist, department, medium, dimensions, classification, culture, credit line, AAT tags, and CC0 image URLs. Modes: keyword search, department walk, incremental, and direct object-ID lookup.

Pricing

Pay per event

Rating

0.0

(0)

Developer

BowTiedRaccoon

BowTiedRaccoon

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Scrape artwork records from The Metropolitan Museum of Art's open-access collection API. Returns full metadata for 490k+ objects including title, artist, department, medium, dimensions, classification, culture, period, credit line, AAT subject tags, and CC0 image URLs.

What you get

Each scraped record contains:

FieldDescription
object_idNumeric Met Museum object ID
accession_numberMuseum accession number
accession_yearYear the object was accessioned
is_public_domainCC0 licence flag
is_highlightMet highlight designation
is_on_viewCurrently on display
titleObject title
artist_display_nameArtist name
artist_display_bioArtist biographical note
artist_nationalityArtist nationality
artist_begin_dateArtist birth year
artist_end_dateArtist death year
artist_wikidata_urlArtist Wikidata URL
artist_ulan_urlArtist Getty ULAN URL
object_dateCreation date (human-readable)
object_begin_dateEarliest creation year (integer)
object_end_dateLatest creation year (integer)
mediumMaterials (e.g. "Oil on canvas")
dimensionsPhysical dimensions
classificationObject type (e.g. "Paintings", "Prints")
departmentMuseum department
cultureCulture of origin
periodHistorical period
dynastyDynasty (for antiquities)
credit_lineAcquisition credit line
gallery_numberGallery number
object_nameObject type (e.g. "Painting", "Vase")
primary_image_urlFull-resolution CC0 image URL
primary_image_small_urlWeb-size CC0 image URL
additional_image_urlsPipe-separated additional image URLs
tagsPipe-separated AAT subject tags
object_urlMet collection page URL
object_wikidata_urlObject Wikidata URL
metadata_dateRecord last updated date
repositoryRepository name

Modes

Search mode (default)

Discover objects by keyword query with optional filters:

{
"mode": "search",
"query": "van gogh",
"hasImages": true,
"departmentId": 11,
"dateBegin": 1880,
"dateEnd": 1920,
"maxItems": 100
}

Filters available in search mode: departmentId, hasImages, isHighlight, isOnView, dateBegin, dateEnd, geoLocation, medium.

Walk mode

Iterate the full collection or a department without a keyword:

{
"mode": "walk",
"departmentId": 11,
"maxItems": 500
}

Omit departmentId to walk the entire 490k+ object collection.

Incremental mode

Fetch only objects whose metadata was updated on or after a date:

{
"mode": "incremental",
"metadataDate": "2026-01-01",
"maxItems": 1000
}

Use this for scheduled runs that pick up newly added or corrected records.

By-ID mode

Fetch specific objects by their Met object ID:

{
"mode": "by_ids",
"objectIds": ["436535", "436529", "436944"],
"maxItems": 50
}

Department IDs

IDDepartment
1American Wing
3Ancient West Asian Art
4Arms and Armor
5Arts of Africa, Oceania, and the Americas
6Asian Art
7The Cloisters
8The Costume Institute
9Drawings and Prints
10Egyptian Art
11European Paintings
12European Sculpture and Decorative Arts
13Greek and Roman Art
14Islamic Art
15The Robert Lehman Collection
16The Libraries
17Medieval Art
18Musical Instruments
19Photographs
21Modern Art

Notes on image URLs

Image URLs point to the Met's CDN (images.metmuseum.org) and are served under the CC0 licence for public-domain objects. This actor exports URL strings only — it does not download or rehost pixel data.

Data source

Data is sourced from the Metropolitan Museum of Art's public collection API at collectionapi.metmuseum.org. No authentication is required. The Met requests polite use — this actor operates well below the advised 80 req/sec cap.