# Monitor Your Brand in Microsoft Copilot Answers

**Use case:** 

Check if Microsoft Copilot mentions your brand across your keyword set, with answer text, citations, and a per-query brand flag as JSON.

## Input

```json
{
  "query": "best crm for startups",
  "queries": [
    "best crm for startups",
    "top crm software 2026"
  ],
  "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.