# Artsy Paintings Scraper

**Use case:** 

Scrape painting artworks from Artsy with title, artist, date, medium, image, and URL. Export structured art market data to JSON or CSV.

## Input

```json
{
  "mode": "artworks",
  "keyword": "painting",
  "maxItems": 50,
  "forSale": false,
  "showsStatus": ""
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image Url",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "artistNames": {
    "label": "Artist Names",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "date": {
    "label": "Date",
    "format": "date"
  },
  "medium": {
    "label": "Medium",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "mediumType": {
    "label": "Medium Type",
    "format": "text"
  },
  "attributionClass": {
    "label": "Attribution Class",
    "format": "text"
  },
  "dimensionsIn": {
    "label": "Dimensions In",
    "format": "text"
  },
  "dimensionsCm": {
    "label": "Dimensions Cm",
    "format": "text"
  },
  "widthCm": {
    "label": "Width Cm",
    "format": "text"
  },
  "heightCm": {
    "label": "Height Cm",
    "format": "text"
  },
  "aspectRatio": {
    "label": "Aspect Ratio",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "priceDisplay": {
    "label": "Price Display",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Artsy Scraper - Artworks, Artists & Shows](https://apify.com/parseforge/artsy-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/artsy-scraper) to learn more, explore other use cases, and run it yourself.