# AEO Tracking: Your Brand in Bing Copilot Answers

**Use case:** 

Track whether Bing Copilot's AI answer cites your brand for any query, with the full answer, cited sources, and a brand-mention flag as JSON.

## Input

```json
{
  "query": "best crm for startups",
  "queries": [
    "best crm for startups",
    "best help desk software"
  ],
  "brandToTrack": "Acme"
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "string"
  },
  "answerPresent": {
    "label": "Answer Present",
    "format": "boolean"
  },
  "answerHeader": {
    "label": "Answer Header",
    "format": "string"
  },
  "brandToTrack": {
    "label": "Brand to Track",
    "format": "string"
  },
  "brandMentioned": {
    "label": "Brand Mentioned",
    "format": "boolean"
  },
  "summary": {
    "label": "Summary",
    "format": "string"
  },
  "fetched_at": {
    "label": "Fetched At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Bing Copilot AI Answers API | Microsoft AEO Monitoring](https://apify.com/johnvc/bing-copilot-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/bing-copilot-api) to learn more, explore other use cases, and run it yourself.