# Uline Shipping Boxes Catalog Scraper

**Use case:** 

Scrape Uline shipping boxes with SKUs, product names, pack details, prices, category URLs, and product links.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.uline.com/Product/GuidedNav?t=184360&dup=title"
    }
  ],
  "maxItems": 50,
  "maxPages": 1,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "sku": {
    "label": "SKU",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "link"
  },
  "imageUrl": {
    "label": "Image URL",
    "format": "link"
  },
  "price": {
    "label": "Unit price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "priceBreaks": {
    "label": "Price breaks",
    "format": "text"
  },
  "dimensions": {
    "label": "Dimensions",
    "format": "text"
  },
  "attributes": {
    "label": "Attributes",
    "format": "text"
  },
  "packQuantity": {
    "label": "Pack quantity",
    "format": "text"
  },
  "weight": {
    "label": "Weight",
    "format": "text"
  },
  "availability": {
    "label": "Availability",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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