# B&H Photo Product Price and Review Extractor

**Use case:** 

Collect detailed product information from B&H Photo, including prices, descriptions, specs, and reviews from the projection attachments category.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.bhphotovideo.com/c/buy/Projection-Attachments-Lenses/ci/1676"
    }
  ],
  "results_wanted": 100,
  "max_pages": 20
}
```

## Output

```json
{
  "name": {
    "label": "Product Name",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "in_stock": {
    "label": "In Stock",
    "format": "boolean"
  },
  "stock_availability": {
    "label": "Stock Availability",
    "format": "text"
  },
  "reviews": {
    "label": "Reviews",
    "format": "number"
  },
  "featured_image": {
    "label": "Featured Image",
    "format": "image"
  },
  "description_text": {
    "label": "Description",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [B&H Photo Scraper](https://apify.com/shahidirfan/b-h-photo-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/shahidirfan/b-h-photo-scraper) to learn more, explore other use cases, and run it yourself.