# Allbirds Product Catalog — Shopify Scraper

**Use case:** 

Extract all products from the Allbirds Shopify store. Prices, availability, images, and product tags.

## Input

```json
{
  "store_url": "https://allbirds.com",
  "collection": "",
  "max_results": 50
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "compare_at_price": {
    "label": "Compare At Price",
    "format": "text"
  },
  "available": {
    "label": "Available",
    "format": "boolean"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "vendor": {
    "label": "Vendor",
    "format": "text"
  },
  "product_type": {
    "label": "Product Type",
    "format": "text"
  },
  "image_url": {
    "label": "Image",
    "format": "image"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  }
}
```

## About this Actor

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