# Amazon Influencer Storefront Scraper - Product Picks

**Use case:** 

Scrape an Amazon influencer storefront - the creator profile plus recommended products with titles, prices, ratings and ASINs. Export CSV or JSON.

## Input

```json
{
  "asins": [
    "B0FQFB8FMG"
  ],
  "searchQueries": [
    "wireless earbuds"
  ],
  "startUrls": [],
  "sellerIds": [],
  "influencerUsernames": [
    "mkbhd"
  ],
  "dataTypes": [
    "influencers"
  ],
  "country": "us",
  "maxResultsPerType": 50,
  "includeProductDetails": false,
  "includeReviews": false,
  "reviewStarFilter": "all_stars",
  "reviewSort": "recent",
  "searchSortBy": "RELEVANCE",
  "searchMinRating": "",
  "searchIsPrime": false,
  "searchCondition": "ALL",
  "includeSellerProducts": false,
  "bestsellersCategory": "electronics",
  "includeNewReleases": false,
  "dealsCategory": "all",
  "dealsIsPrime": false,
  "stopOnError": false
}
```

## Output

```json
{
  "query": {
    "label": "🔎 Query",
    "format": "string"
  },
  "row_type": {
    "label": "🏷 Row type",
    "format": "string"
  },
  "asin": {
    "label": "🆔 ASIN",
    "format": "string"
  },
  "title": {
    "label": "📛 Title",
    "format": "string"
  },
  "price": {
    "label": "💲 Price",
    "format": "string"
  },
  "rating": {
    "label": "⭐ Rating",
    "format": "number"
  },
  "url": {
    "label": "🔗 URL",
    "format": "string"
  },
  "error_code": {
    "label": "❌ Error",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Amazon Real-time Scraper](https://apify.com/jdtpnjtp/amazon) with a specific input configuration. Visit the [Actor detail page](https://apify.com/jdtpnjtp/amazon) to learn more, explore other use cases, and run it yourself.