# Check if AI recommends your CRM to small businesses

**Use case:** 

Asks ChatGPT, Perplexity and Gemini the questions a small business owner asks when choosing a CRM, and reports whether HubSpot is named, where it ranks, which competitors are recommended instead, and whether hubspot.com is cited as a source. Swap in your own brand and competitors.

## Input

```json
{
  "brand_name": "HubSpot",
  "queries": [
    "What is the best CRM for a small business?",
    "Which CRM should a 20 person sales team use in 2026?",
    "HubSpot vs Salesforce for a startup"
  ],
  "competitors": [
    "Salesforce",
    "Pipedrive",
    "Zoho CRM"
  ],
  "brand_domains": [
    "hubspot.com"
  ],
  "platforms": [
    "chatgpt",
    "perplexity",
    "gemini"
  ],
  "runs_per_query": 1,
  "concurrency": 4,
  "max_retries": 2
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "string"
  },
  "platform": {
    "label": "Platform",
    "format": "string"
  },
  "brandMentioned": {
    "label": "Brand mentioned",
    "format": "boolean"
  },
  "mentionPosition": {
    "label": "Mention position",
    "format": "integer"
  },
  "sentiment": {
    "label": "Sentiment",
    "format": "string"
  },
  "recommendationStrength": {
    "label": "Recommendation strength",
    "format": "integer"
  },
  "competitorsMentioned": {
    "label": "Competitors mentioned",
    "format": "array"
  },
  "brandDomainCited": {
    "label": "Your site cited",
    "format": "boolean"
  },
  "analysisSummary": {
    "label": "Analysis summary",
    "format": "string"
  },
  "error": {
    "label": "Error",
    "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`).
