# Claude Brand Visibility Monitor (`opspilot.cc/claude-brand-visibility-monitor`) Actor

Query Anthropic's Claude to analyze how your brand appears in its responses. Understand brand mentions, sentiment, and competitive positioning.

- **URL**: https://apify.com/opspilot.cc/claude-brand-visibility-monitor.md
- **Developed by:** [wang wei](https://apify.com/opspilot.cc) (community)
- **Categories:** AI, SEO tools
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.15 / ai platform query

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

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).


# README

## 🤖 Claude Brand Visibility Monitor

**Monitor your brand presence in Claude AI responses.** Query Anthropic's Claude to analyze how your brand appears in its responses. Understand brand mentions, sentiment, and competitive positioning.

> 💡 **Want the same analysis for ChatGPT, Gemini, or Perplexity?** Use the **[AI Brand Visibility Monitor](https://console.apify.com/actors/ZUB0j8MY3u5faJct8)** instead.

---

### 🚀 Key Features

| Feature | Description |
|---------|-------------|
| 🎯 **Claude-Focused** | Dedicated analysis for Claude AI platform |
| 📊 **Brand Mention Detection** | Automatically detect if and how often your brand is mentioned |
| 🎭 **Sentiment Analysis** | Understand if mentions are positive, negative, or neutral |
| 🔗 **Source Citation Tracking** | See which URLs and sources Claude references |
| 📈 **Competitive Benchmarking** | Compare your brand vs competitor mentions |
| ⚡ **Advanced Reasoning** | Claude's deep reasoning for nuanced responses |
| 🔄 **Retry Protection** | Automatic retry with backoff for failed requests |
| 💰 **Dedicated Pricing** | Pay per successful Claude query |

---

### 👤 Who Is This Actor For?

| User | Use Case |
|------|----------|
| 📢 **Brand Managers** | Monitor brand presence specifically in Claude |
| 📊 **Marketing Teams** | Track visibility on Claude vs other AI platforms |
| 💼 **Market Research** | Analyze Claude's unique perspective on your brand |
| 🏢 **PR Teams** | Track brand reputation in Claude's responses |

---

### ❓ Why Use Claude-Specific Monitoring?

> Claude AI (by Anthropic) uses advanced reasoning to provide thoughtful, nuanced responses. Unlike other AI platforms, Claude often provides more in-depth analysis and may reference different sources.

Key differences:
- 🧠 **Deeper reasoning**: Claude's responses reflect thorough analysis
- 📚 **Academic sources**: Often references research papers and detailed sources
- ⚖️ **Balanced perspectives**: Tends to provide more nuanced viewpoints
- 🔬 **Technical depth**: Often goes deeper into technical explanations

---

### 📥 Input Parameters

#### Required

| Parameter | Type | Description |
|-----------|------|-------------|
| `keyword` | string | The keyword or question to query Claude |
| `platforms` | array | Must be `["claude"]` (pre-selected) |

#### Optional

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `yourBrand` | string | - | Your brand name to monitor in Claude responses |
| `competitors` | string | - | Competitor brands to compare (comma-separated) |
| `location` | string | "United States" | Target geographic location |
| `language` | string | "English" | Target language for Claude's response |

#### Example Input

```json
{
  "keyword": "best laptop brand",
  "platforms": ["claude"],
  "yourBrand": "Dell",
  "competitors": "HP, Lenovo, Apple, ASUS",
  "location": "United States",
  "language": "English"
}
````

***

### 📤 Output Structure

#### Complete Result Object

```json
{
  "query": {
    "keyword": "best laptop brand",
    "platforms": ["claude"],
    "yourBrand": ["Dell"],
    "competitors": ["HP", "Lenovo", "Apple", "ASUS"],
    "location": "United States",
    "language": "English"
  },
  "results": [
    {
      "platform": "claude",
      "status": "success",
      "model": "claude-3-5-sonnet",
      "answerLength": 3200,
      "citationCount": 7,
      "citations": [
        {
          "url": "https://www.dell.com",
          "title": "Dell Official Website",
          "domain": "dell.com"
        }
      ],
      "brandAnalysis": {
        "Dell": {
          "mentioned": true,
          "mentionCount": 4,
          "sentiment": "positive",
          "snippet": "...Dell is consistently ranked as one of the top business laptop manufacturers..."
        }
      },
      "competitorAnalysis": {
        "HP": { "mentioned": true, "mentionCount": 3, "sentiment": "positive" },
        "Lenovo": { "mentioned": true, "mentionCount": 5, "sentiment": "positive" },
        "Apple": { "mentioned": true, "mentionCount": 6, "sentiment": "neutral" },
        "ASUS": { "mentioned": false, "mentionCount": 0, "sentiment": "n/a" }
      }
    }
  ],
  "errors": [],
  "stats": {
    "sandbox": false,
    "totalRequests": 1,
    "estimatedCost": 0.30
  },
  "completedAt": "2026-03-30T10:00:00.000Z"
}
```

#### Output Fields Explained

| Field | Type | Description |
|-------|------|-------------|
| `query` | object | Original input parameters |
| `results` | array | Per-platform results (only Claude in this case) |
| `results[].platform` | string | Always "claude" |
| `results[].status` | string | "success" or "error" |
| `results[].model` | string | Claude model used (e.g., claude-3-5-sonnet) |
| `results[].answerLength` | number | Character count of Claude's response |
| `results[].citationCount` | number | Number of source URLs cited |
| `results[].citations` | array | Array of {url, title, domain} |
| `results[].brandAnalysis` | object | Analysis for your brand |
| `results[].competitorAnalysis` | object | Same structure for competitors |
| `stats.estimatedCost` | number |  API cost for this query |
| `completedAt` | string | ISO timestamp of completion |

#### Brand Analysis Object

| Field | Type | Description |
|-------|------|-------------|
| `mentioned` | boolean | Was the brand mentioned? |
| `mentionCount` | number | How many times mentioned |
| `sentiment` | string | "positive", "negative", "neutral", or "n/a" |
| `snippet` | string | Text excerpt (~200 chars) around first mention |

***

### 💡 Use Cases

#### 1️⃣ Claude Brand Monitoring

> **"What does Claude say about my brand when users ask about \[category]?"**

Claude's deep reasoning provides nuanced insights into brand perception.

#### 2️⃣ Source Analysis

> **"What sources does Claude trust for \[topic]?"**

Claude often references academic papers, detailed documentation, and reputable sources.

#### 3️⃣ Competitive Insights

> **"How does Claude's view of my brand compare to competitors?"**

Compare mention patterns, sentiment, and positioning.

#### 4️⃣ Reputation Deep Dive

> **"What is the detailed sentiment around my brand?"**

Claude's thorough analysis provides deeper sentiment context.

***

### ⚠️ Important Notes

| Note | Details |
|------|---------|
| 💰 **Higher Cost** | Claude API is significantly more expensive than other AI platforms |
| 🧠 **Deeper Analysis** | Claude responses tend to be more detailed and nuanced |
| 📝 **Reasoning Phase** | Claude may include internal reasoning in response (automatically filtered) |
| ⏱️ **Longer Response** | Claude responses may be longer and more comprehensive |

***

### 🔧 Technical Details

#### Resource Requirements

- **Memory**: 512 MB minimum (1 GB recommended)
- **Timeout**: ~15-30 seconds (Claude may take longer)
- **Max Platforms**: 1 per run (Claude only)

#### How It Works

1. Query Claude via  API
2. Extract full response text (skipping internal reasoning)
3. Identify brand mentions using pattern matching
4. Analyze sentiment around each mention
5. Collect and deduplicate source citations
6. Push structured results to Apify dataset

#### Retry Logic

- Automatic retry on transient errors (5xx, network issues)
- Exponential backoff: 2s → 4s → 8s
- Rate limit (429) handling with Retry-After support
- Payment error (402) detection for  issues

***

### 💬 Tips for Best Results

| ## | Tip |
|---|-----|
| 1️⃣ | Use clear, specific keywords for targeted results |
| 2️⃣ | Compare with 2-3 competitors for context |
| 3️⃣ | Check citations to see what sources Claude references |
| 4️⃣ | Review the sentiment snippet for nuance |
| 5️⃣ | Run alongside the main AI Brand Monitor for platform comparison |

***

### 📊 Example Scenarios

#### Scenario A: Electronics Brand

```json
{
  "keyword": "best laptop for software development",
  "platforms": ["claude"],
  "yourBrand": "Apple",
  "competitors": "Dell, HP, Lenovo"
}
```

#### Scenario B: Automotive Industry

```json
{
  "keyword": "most reliable electric vehicles",
  "platforms": ["claude"],
  "yourBrand": "Tesla",
  "competitors": "Rivian, Lucid, Ford"
}
```

#### Scenario C: Financial Services

```json
{
  "keyword": "best online trading platforms",
  "platforms": ["claude"],
  "yourBrand": "Fidelity",
  "competitors": "Charles Schwab, TD Ameritrade, E*TRADE"
}
```

***

### 🔄 Compare Across Platforms

For complete AI visibility analysis, use both:

| Actor | Platform | Best For |
|-------|----------|----------|
| **AI Brand Visibility Monitor** | ChatGPT, Gemini, Perplexity | Broad multi-platform coverage |
| **Claude Brand Monitor** | Claude only | Deep, nuanced analysis |

Run both to get the full picture of your brand's visibility across the AI landscape.

***

### ❤️ Need Help?

- 📖 **Documentation**: Check Apify documentation for Actor development
- 🐛 **Bug Reports**: Open an issue with sample input/output
- 💡 **Feature Requests**: Contact us for custom development

***

*Monitor your brand in the AI era · Claude Brand Visibility Monitor*

# Actor input Schema

## `keyword` (type: `string`):

The keyword or question to ask Claude. Claude provides in-depth, nuanced responses. Examples:
• best laptop brand
• project management software comparison
• most reliable electric vehicles

## `platforms` (type: `array`):

Claude AI platform (Anthropic). Pre-selected.

Note: Claude API is significantly more expensive than other AI platforms. Each query costs approximately $0.30 in  API fees.

## `yourBrand` (type: `string`):

Your brand name to monitor in Claude's responses. The actor will detect mentions, extract context, and analyze sentiment.

## `competitors` (type: `string`):

Competitor brand names to compare. Separate multiple brands with commas. Examples:
• Samsung, Sony, LG
• Tesla, Rivian, Ford

## `location` (type: `string`):

Target geographic location for Claude's response. Examples: United States, United Kingdom, Germany

## `language` (type: `string`):

Target language for Claude's response. Examples: English, German, French, Spanish

## Actor input object example

```json
{
  "platforms": [
    "claude"
  ],
  "location": "United States",
  "language": "English"
}
```

# Actor output Schema

## `brandAnalysis` (type: `string`):

Dataset containing brand visibility analysis

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "platforms": [
        "claude"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("opspilot.cc/claude-brand-visibility-monitor").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "platforms": ["claude"] }

# Run the Actor and wait for it to finish
run = client.actor("opspilot.cc/claude-brand-visibility-monitor").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "platforms": [
    "claude"
  ]
}' |
apify call opspilot.cc/claude-brand-visibility-monitor --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=opspilot.cc/claude-brand-visibility-monitor",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Claude Brand Visibility Monitor",
        "description": "Query Anthropic's Claude to analyze how your brand appears in its responses. Understand brand mentions, sentiment, and competitive positioning.",
        "version": "0.1",
        "x-build-id": "fuGxZJw1dNvzFwOpf"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/opspilot.cc~claude-brand-visibility-monitor/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-opspilot.cc-claude-brand-visibility-monitor",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/opspilot.cc~claude-brand-visibility-monitor/runs": {
            "post": {
                "operationId": "runs-sync-opspilot.cc-claude-brand-visibility-monitor",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/opspilot.cc~claude-brand-visibility-monitor/run-sync": {
            "post": {
                "operationId": "run-sync-opspilot.cc-claude-brand-visibility-monitor",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "keyword",
                    "platforms"
                ],
                "properties": {
                    "keyword": {
                        "title": "Keyword / Question",
                        "type": "string",
                        "description": "The keyword or question to ask Claude. Claude provides in-depth, nuanced responses. Examples:\n• best laptop brand\n• project management software comparison\n• most reliable electric vehicles"
                    },
                    "platforms": {
                        "title": "AI Platform",
                        "type": "array",
                        "description": "Claude AI platform (Anthropic). Pre-selected.\n\nNote: Claude API is significantly more expensive than other AI platforms. Each query costs approximately $0.30 in  API fees.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "claude"
                            ]
                        }
                    },
                    "yourBrand": {
                        "title": "Your Brand Name",
                        "type": "string",
                        "description": "Your brand name to monitor in Claude's responses. The actor will detect mentions, extract context, and analyze sentiment."
                    },
                    "competitors": {
                        "title": "Competitor Brands",
                        "type": "string",
                        "description": "Competitor brand names to compare. Separate multiple brands with commas. Examples:\n• Samsung, Sony, LG\n• Tesla, Rivian, Ford"
                    },
                    "location": {
                        "title": "Target Location",
                        "type": "string",
                        "description": "Target geographic location for Claude's response. Examples: United States, United Kingdom, Germany",
                        "default": "United States"
                    },
                    "language": {
                        "title": "Response Language",
                        "type": "string",
                        "description": "Target language for Claude's response. Examples: English, German, French, Spanish",
                        "default": "English"
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
