# Tech Stack Detection Example: Top Ecommerce Platforms

**Use case:** 

Live example detecting the technologies behind Shopify, Wix, Squarespace, BigCommerce and Etsy, from CMS and frameworks to analytics and CDNs.

## Input

```json
{
  "urls": [
    "https://www.shopify.com",
    "https://www.wix.com",
    "https://www.squarespace.com",
    "https://www.bigcommerce.com",
    "https://www.etsy.com"
  ],
  "maxConcurrency": 10
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "link"
  },
  "finalUrl": {
    "label": "Final URL",
    "format": "link"
  },
  "httpStatus": {
    "label": "HTTP status",
    "format": "number"
  },
  "pageTitle": {
    "label": "Page title",
    "format": "text"
  },
  "metaGenerator": {
    "label": "Meta generator",
    "format": "text"
  },
  "fetchTimeMs": {
    "label": "Fetch time (ms)",
    "format": "number"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Website Technology Detector - Tech Stack Scanner](https://apify.com/apifmcpfactory/tech-stack-detector) with a specific input configuration. Visit the [Actor detail page](https://apify.com/apifmcpfactory/tech-stack-detector) to learn more, explore other use cases, and run it yourself.