← Art & Museums

Search Met Museum

GET /museum/met/search

Search the Metropolitan Museum of Art's collection of 470,000+ artworks by keyword. Returns matching artworks with titles, artists, dates, mediums, departments, and image URLs. The Met's collection spans 5,000 years of world culture.

Parameters

q required

Search query (e.g. 'monet', 'egyptian', 'armor')

Example Requests

Basic usage
curl "https://nordapi.ee/api/v1/museum/met/search?q=monet"

Live Response

{
  "data": {
    "artworks": [
      {
        "artist": "Claude Monet",
        "date": "1873",
        "department": "European Paintings",
        "id": 438003,
        "image_url": "",
        "medium": "Oil on canvas",
        "title": "Camille Monet (1847–1879) on a Garden Bench"
      },
      {
        "artist": "Claude Monet",
        "date": "1867",
        "department": "European Paintings",
        "id": 437133,
        "image_url": "",
        "medium": "Oil on canvas",
        "title": "Garden at Sainte-Adresse"
      },
      {
        "artist": "Edouard Manet",
        "date": "1874",
        "department": "European Paintings",
        "id": 436965,
        "image_url": "https://images.metmuseum.org/CRDImages/ep/original/DP-25465-001.jpg",
        "medium": "Oil on canvas",
        "title": "The Monet Family in Their Garden at Argenteuil"
      },
      {
        "artist": "Claude Monet",
        "date": "1899",
        "department": "European Paintings",
        "id": 437127,
        "image_url": "",
        "medium": "Oil on canvas",
        "title": "Bridge over a Pond of Water Lilies"
      },
      {
        "artist": "Paul Cézanne",
        "date": "ca. 1890",
        "department": "European Paintings",
        "id": 435882,
        "image_url": "https://images.metmuseum.org/CRDImages/ep/original/DT47.jpg",
        "medium": "Oil on canvas",
        "title": "Still Life with Apples and a Pot of Primroses"
      }
    ],
    "total": 167
  },
  "success": true
}