# Scrape specific Fourthwall product pages

**Use case:** 

Scrape exact Fourthwall product URLs into structured rows: name, price, SKU, stock, image and description. No full-shop crawl needed.

## Input

```json
{
  "shopUrls": [
    "shop.fourthwall.com"
  ],
  "productUrls": [
    "https://shop.fourthwall.com/products/example-tee"
  ],
  "maxProductsPerShop": 0,
  "monitorMode": false,
  "alertOnNewProduct": true,
  "alertOnPriceChange": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 5,
  "diagnose": false
}
```

## Output

```json
{
  "image": {
    "label": "Image",
    "format": "string"
  },
  "shop": {
    "label": "Shop",
    "format": "string"
  },
  "name": {
    "label": "Product",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Cur",
    "format": "string"
  },
  "availability": {
    "label": "Stock",
    "format": "string"
  },
  "product_url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Fourthwall Shop Scraper — Products, Prices & Stock Alerts](https://apify.com/scrapersdelight/fourthwall-shop-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/fourthwall-shop-scraper) to learn more, explore other use cases, and run it yourself.