# Measure an ecommerce platform's share of voice in AI search

**Use case:** 

Runs each buying intent question twice per platform for a stable score and computes Shopify's share of voice against WooCommerce, BigCommerce and Wix across ChatGPT, Perplexity and Gemini. The answers view keeps the full AI response so you can see the exact wording used.

## Input

```json
{
  "brand_name": "Shopify",
  "queries": [
    "What is the best platform to start an online store?",
    "Shopify or WooCommerce for a small clothing brand?",
    "Best ecommerce platform for dropshipping in 2026"
  ],
  "competitors": [
    "WooCommerce",
    "BigCommerce",
    "Wix"
  ],
  "brand_domains": [
    "shopify.com"
  ],
  "platforms": [
    "chatgpt",
    "perplexity",
    "gemini"
  ],
  "runs_per_query": 2,
  "concurrency": 4,
  "max_retries": 2
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "string"
  },
  "platform": {
    "label": "Platform",
    "format": "string"
  },
  "model": {
    "label": "Model",
    "format": "string"
  },
  "answerText": {
    "label": "AI answer",
    "format": "string"
  },
  "citedSources": {
    "label": "Cited sources",
    "format": "array"
  },
  "brandQuote": {
    "label": "Brand quote",
    "format": "string"
  },
  "checkedAt": {
    "label": "Checked at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [AI Brand Visibility Tracker (ChatGPT, Perplexity & Gemini)](https://apify.com/fayoussef/ai-brand-visibility-tracker.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fayoussef/ai-brand-visibility-tracker.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/fayoussef/ai-brand-visibility-tracker.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
