Overview

Cloro helps businesses understand and track what AI models say about their brand, products, and services across different providers and regions.

Brand Monitoring

Monitor how AI models describe your company when users ask about it:
  • Identify misinformation before it spreads
  • Track sentiment across different AI providers
  • Ensure brand consistency in AI-generated content
import requests

# Monitor what AI providers say about your brand
brand_name = "YourBrand"

response = requests.post(
    "https://api.cloro.com/v1/run",
    headers={"Authorization": "Bearer YOUR_API_KEY"},
    json={
        "prompt": f"What do you know about {brand_name}?",
        "model": "CHATGPT",
        "country": "US"
    }
)
print(f"ChatGPT: {response.json()['result']}")

# Monitor across different regions
regions = ['US', 'GB', 'DE', 'JP', 'AU']
for region in regions:
    response = requests.post(
        "https://api.cloro.com/v1/run",
        headers={"Authorization": "Bearer YOUR_API_KEY"},
        json={
            "prompt": f"What do you know about {brand_name}?",
            "model": "CHATGPT",
            "country": region
        }
    )
    print(f"{region}: {response.json()['result']}")

Crisis Management

Set up monitoring for potential PR issues:
  • Track negative mentions in AI responses
  • Monitor misinformation spread
  • Detect emerging issues before they escalate
const monitorBrand = async () => {
  const criticalTerms = ["lawsuit", "scandal", "bankruptcy", "recall"];

  for (const term of criticalTerms) {
    const response = await fetch("https://api.cloro.com/v1/run", {
      method: "POST",
      headers: {
        Authorization: "Bearer YOUR_API_KEY",
        "Content-Type": "application/json",
      },
      body: JSON.stringify({
        prompt: `Any ${term} related to YourBrand?`,
        model: "CHATGPT",
        country: "US",
      }),
    });

    const data = await response.json();
    if (data.result.includes(term)) {
      // Trigger alert
      sendAlert(term, data.result);
    }
  }
};

Competitive Intelligence

Compare how AI models position you against competitors:
  • Compare brand descriptions side-by-side
  • Track market positioning changes
  • Identify competitive advantages mentioned by AI
competitors = ['Competitor A', 'Competitor B', 'Your Brand']
comparison_prompt = "Compare the following companies: {}"

response = requests.post(
    "https://api.cloro.com/v1/run",
    headers={"Authorization": "Bearer YOUR_API_KEY"},
    json={
        "prompt": comparison_prompt.format(", ".join(competitors)),
        "model": "CHATGPT",
        "country": "US"
    }
)

# Analyze competitive positioning
analysis = response.json()['result']

Getting Started

Ready to start monitoring your brand with Cloro?