# Costco Business Category Extractor

**Use case:** 

Extract a Costco Business Delivery category URL with product titles, item numbers, prices, pack sizes, availability, and images.

## Input

```json
{
  "keywords": [
    "coffee",
    "paper towels"
  ],
  "startUrls": [
    {
      "url": "https://www.costcobusinessdelivery.com/coffee.html"
    }
  ],
  "maxItems": 75,
  "location": "*",
  "locale": "en-US",
  "includeOutOfStock": true
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "itemNumber": {
    "label": "Item number",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "unitPrice": {
    "label": "Unit price",
    "format": "text"
  },
  "packSize": {
    "label": "Pack size",
    "format": "text"
  },
  "inStock": {
    "label": "In stock",
    "format": "boolean"
  },
  "availability": {
    "label": "Availability",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "link"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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