# AI Visibility Share of Voice — Acme Example

**Use case:** 

Turn six buyer-supplied AI visibility observations into a deterministic Acme competitor share-of-voice report with model, market, and language segments.

## Input

```json
{
  "schemaVersion": "1.0",
  "analysisId": "acme-ai-sov-2026-q4",
  "targetBrand": "Acme",
  "competitors": [
    "Beta",
    "Gamma"
  ],
  "observations": [
    {
      "brand": "Acme",
      "competitors": [
        "Beta"
      ],
      "language": "en",
      "market": "US",
      "mentioned": true,
      "modelFamily": "ChatGPT",
      "observationId": "1dd0242ec51569d105f1d541f97fec03202ff2632f507b5b03f45393a0985793",
      "position": 1,
      "schemaVersion": "1.0"
    },
    {
      "brand": "Acme",
      "competitors": [
        "Beta",
        "Gamma"
      ],
      "language": "en",
      "market": "US",
      "mentioned": false,
      "modelFamily": "ChatGPT",
      "observationId": "6d5d40cc4239b90a29a6b01f05afc95f6014e147653733a88c0b8b0cc2f9608b",
      "position": null,
      "schemaVersion": "1.0"
    },
    {
      "brand": "Acme",
      "competitors": [
        "Gamma"
      ],
      "language": "en",
      "market": "US",
      "mentioned": true,
      "modelFamily": "Gemini",
      "observationId": "02bb02668bb610c21e80f39887124fcbe21ba70cce9ea951f5545cfee30a11dd",
      "position": 2,
      "schemaVersion": "1.0"
    },
    {
      "brand": "Acme",
      "competitors": [],
      "language": "en",
      "market": "UK",
      "mentioned": true,
      "modelFamily": "Gemini",
      "observationId": "6d2f681dd1da0ee26756b2b6d918f20534226762040feaf0ef200c419008c7d7",
      "position": 1,
      "schemaVersion": "1.0"
    },
    {
      "brand": "Acme",
      "competitors": [
        "Beta"
      ],
      "language": "en",
      "market": "UK",
      "mentioned": false,
      "modelFamily": "Perplexity",
      "observationId": "4ca3603e3fc5118141211654becfa32d6a52b8d9c175e750205f249ffadced9c",
      "position": null,
      "schemaVersion": "1.0"
    },
    {
      "brand": "Acme",
      "competitors": [
        "Beta",
        "Gamma"
      ],
      "language": "en",
      "market": "US",
      "mentioned": true,
      "modelFamily": "Perplexity",
      "observationId": "75156e90a81c700b669dec421a50880014a91bc7a42a7a337d1f7655a3cb7cba",
      "position": 1,
      "schemaVersion": "1.0"
    }
  ],
  "maximumSegmentsPerDimension": 10
}
```

## Output

```json
{
  "analysisId": {
    "label": "Analysis ID",
    "format": "string"
  },
  "targetBrand": {
    "label": "Target brand",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "source.mode": {
    "label": "Source",
    "format": "text"
  },
  "source.acceptedUniqueObservationCount": {
    "label": "Observations",
    "format": "integer"
  },
  "overall.totalEntityMentions": {
    "label": "Entity mentions",
    "format": "integer"
  },
  "overall.winner": {
    "label": "Leading competitor",
    "format": "text"
  },
  "reportId": {
    "label": "Report ID",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [AI Visibility Competitor Share of Voice](https://apify.com/zinin/ai-visibility-competitor-share-of-voice.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/zinin/ai-visibility-competitor-share-of-voice.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/zinin/ai-visibility-competitor-share-of-voice.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
