# Payment Gateway Detection for Online Stores

**Use case:** 

Identify the payment gateway used by major online stores like Amazon and Etsy. Receive detailed tech stack data in CSV or JSON format.

## Input

```json
{
  "domains": [
    "amazon.com",
    "etsy.com",
    "wayfair.com",
    "overstock.com",
    "chewy.com"
  ],
  "maxResults": 1000,
  "concurrency": 10,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "cms": {
    "label": "CMS",
    "format": "string"
  },
  "ecommerce": {
    "label": "Ecommerce",
    "format": "string"
  },
  "server": {
    "label": "Web server",
    "format": "string"
  },
  "technologies": {
    "label": "Technologies",
    "format": "array"
  },
  "technologyCount": {
    "label": "Technology count",
    "format": "integer"
  },
  "statusCode": {
    "label": "Status code",
    "format": "integer"
  }
}
```

## About this Actor

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