# AWS Marketplace Storage Products Scraper

**Use case:** 

Scrape AWS Marketplace storage listings with product title, description, category, pricing, vendor name, and marketplace URL. Export to JSON or CSV.

## Input

```json
{
  "maxItems": 50,
  "categories": [
    "storage"
  ],
  "pricingTypes": [
    "free",
    "paid"
  ],
  "productTypes": [
    "saas"
  ],
  "regions": [
    "us-east-1"
  ],
  "operatingSystems": [
    "Linux"
  ],
  "deploymentTypes": [
    "cloud"
  ],
  "freeTrialAvailable": "ALL",
  "awsCertified": "ALL",
  "featured": "ALL"
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Product Image",
    "format": "url"
  },
  "id": {
    "label": "Product ID",
    "format": "text"
  },
  "name": {
    "label": "Product Name",
    "format": "text"
  },
  "title": {
    "label": "Product Title",
    "format": "text"
  },
  "marketplace_url": {
    "label": "Marketplace URL",
    "format": "url"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "vendor_name": {
    "label": "Vendor Name",
    "format": "text"
  },
  "vendor_id": {
    "label": "Vendor ID",
    "format": "text"
  },
  "pricing": {
    "label": "Pricing",
    "format": "text"
  },
  "pricing_type": {
    "label": "Pricing Type",
    "format": "text"
  },
  "product_type": {
    "label": "Product Type",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviews_count": {
    "label": "Reviews Count",
    "format": "number"
  },
  "free_trial_available": {
    "label": "Free Trial Available",
    "format": "text"
  },
  "aws_certified": {
    "label": "AWS Certified",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "pricing_details": {
    "label": "Pricing Details",
    "format": "json"
  },
  "technical_details": {
    "label": "Technical Details",
    "format": "json"
  },
  "region_availability": {
    "label": "Region Availability",
    "format": "text"
  },
  "operating_systems": {
    "label": "Operating Systems",
    "format": "text"
  },
  "compliance_certifications": {
    "label": "Compliance Certifications",
    "format": "text"
  },
  "support_email": {
    "label": "Support Email",
    "format": "text"
  },
  "website_url": {
    "label": "Website URL",
    "format": "url"
  },
  "features": {
    "label": "Features",
    "format": "text"
  },
  "screenshots": {
    "label": "Screenshots",
    "format": "json"
  },
  "scrapedTimestamp": {
    "label": "Scraped Date",
    "format": "datetime"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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