# Search Costco for kitchen appliances

**Use case:** 

Scrape Costco kitchen appliance search results with prices, brands, and product URLs for deal hunting and catalog research.

## Input

```json
{
  "keywords": [
    "air fryer",
    "instant pot"
  ],
  "costcoSites": [
    "www.costco.com",
    "www.costco.ca"
  ],
  "maxProducts": 60
}
```

## Output

```json
{
  "productTitle": {
    "label": "Product title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "brandName": {
    "label": "Brand",
    "format": "string"
  },
  "marketplace": {
    "label": "Marketplace",
    "format": "string"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "string"
  },
  "imageUrl": {
    "label": "Image",
    "format": "string"
  },
  "searchQuery": {
    "label": "Search query",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Costco Product Search Scraper](https://apify.com/powerai/costco-product-search-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/powerai/costco-product-search-scraper) to learn more, explore other use cases, and run it yourself.