# Costco Product Scraper - Office Chair

**Use case:** 

Scrape Costco product search results with product name, price, image, product ID, and details. Export to JSON or CSV.

## Input

```json
{
  "maxItems": 5,
  "searchQuery": "office chair"
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "name": {
    "label": "Product Name",
    "format": "text"
  },
  "url": {
    "label": "Product URL",
    "format": "link"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "memberPrice": {
    "label": "Member Price",
    "format": "number"
  },
  "originalPrice": {
    "label": "Original Price",
    "format": "number"
  },
  "inStock": {
    "label": "In Stock",
    "format": "boolean"
  },
  "productId": {
    "label": "Product ID",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "sku": {
    "label": "SKU",
    "format": "text"
  },
  "itemNumber": {
    "label": "Item Number",
    "format": "text"
  },
  "specifications": {
    "label": "Specifications",
    "format": "object"
  },
  "images": {
    "label": "Images",
    "format": "object"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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