# Shopify Store Scraper — Products, Prices & Variants (`maged120/shopify-intelligence`) Actor

Scrape any public Shopify store to extract all products, pricing, variants, collections, and store metadata — without needing Shopify API access.

- **URL**: https://apify.com/maged120/shopify-intelligence.md
- **Developed by:** [Maged](https://apify.com/maged120) (community)
- **Categories:** Automation, E-commerce, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

### What does Shopify Store Scraper do?

**Shopify Store Scraper** extracts all products, pricing, variants, and collections from any public Shopify store — without needing Shopify API access, partner approval, or store credentials.

This Actor runs on the [Apify platform](https://apify.com). Use it for competitive pricing research, product catalog extraction, e-commerce intelligence, or dropshipping product discovery.

### Why use Shopify Store Scraper?

- **No Shopify API access needed** — works on any public Shopify store's built-in JSON endpoints
- **Complete catalog** — all products, variants, collections, and store metadata
- **Price monitoring** — track competitor pricing changes over time
- **Product research** — discover what competitors are selling and at what price points
- **Dropshipping research** — identify trending products across multiple stores

### How to use Shopify Store Scraper

1. Open the Actor and click **Try for free**
2. Enter Shopify store URLs in the `storeUrls` field
3. Click **Start** — products appear in the Output tab
4. Download as JSON, CSV, or Excel

### Input

```json
{
  "storeUrls": [
    "https://gymshark.com",
    "https://allbirds.com"
  ],
  "maxProducts": 500
}
````

| Field | Type | Description | Default |
|---|---|---|---|
| `storeUrls` | array | Shopify store URLs | required |
| `maxProducts` | integer | Max products per store | `500` |

### Output

```json
{
  "storeUrl": "https://gymshark.com",
  "productId": "12345678",
  "title": "Arrival 5\" Shorts",
  "handle": "arrival-5-shorts",
  "vendor": "Gymshark",
  "productType": "Shorts",
  "collections": ["Men", "Training", "Sale"],
  "price": 45.00,
  "compareAtPrice": 60.00,
  "currency": "USD",
  "variants": [
    { "title": "Small / Black", "price": 45.00, "sku": "GS-ARR5-S-BLK", "available": true }
  ],
  "images": ["https://cdn.shopify.com/..."],
  "description": "Engineered for training with 5\" inseam...",
  "createdAt": "2023-06-01"
}
```

### Output fields

| Field | Type | Description |
|---|---|---|
| `title` | string | Product title |
| `vendor` | string | Brand/vendor name |
| `price` | number | Current price |
| `compareAtPrice` | number | Original/compare-at price |
| `variants` | array | All variants with SKU, price, availability |
| `collections` | array | Collections the product belongs to |
| `images` | array | Product image URLs |

### Cost

| Volume | Estimated cost |
|---|---|
| 1 store (500 products) | ~$0.05–$0.25 |
| 10 stores | ~$0.50–$2.50 |

### FAQ

**Does this work on all Shopify stores?**
Yes — all public Shopify stores expose a `/products.json` endpoint that this Actor uses.

**Can I track price changes over time?**
Yes — schedule this Actor to run daily and compare results to detect price changes.

**Is this Actor maintained?**
Yes. Report bugs or feature requests in the Issues tab.

**Need help or have questions?**
Open an issue in the Issues tab or reach out on Discord: **maged03211**

# Actor input Schema

## `mode` (type: `string`):

Choose 'scrape' to scrape specific store URLs, or 'discover' to find Shopify stores by niche keyword.

## `storeUrls` (type: `array`):

List of store URLs to extract data from. One URL per line. Used in 'scrape' mode.

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

Keyword to discover Shopify stores (e.g. 'gym wear', 'coffee', 'pet accessories'). Used in 'discover' mode.

## `maxDiscoveryStores` (type: `integer`):

Maximum number of Shopify stores to find and scrape when using 'discover' mode.

## `maxProductsPerStore` (type: `integer`):

Cap the number of products extracted per store. Set 0 for the full catalog. Use 250 for a quick sample run.

## `scrapeCollections` (type: `boolean`):

Extract the store's product collections (categories). Each collection becomes its own dataset row.

## `extractContacts` (type: `boolean`):

Extract email addresses and social media links from the store's contact and about pages.

## `includeAnalytics` (type: `boolean`):

Compute pricing stats (min/max/avg/median) and inventory summaries per store and per product type.

## `outputStoreSummary` (type: `boolean`):

Include one store summary row per store. Contains product/collection counts, Shopify status, and enrichment flags.

## `outputProducts` (type: `boolean`):

Include one row per product scraped. A store with 250 products adds 250 dataset items. Disable if you only need collections or contacts.

## `outputCollections` (type: `boolean`):

Include one row per collection. A store with 400 collections adds 400 dataset items. Disable to reduce volume.

## `outputContacts` (type: `boolean`):

Include one row per email address and one per social platform found. Typically 1–8 items per store.

## `outputAnalytics` (type: `boolean`):

Include analytics rows: overall price summary, one per product type, and one per vendor. Typically 5–20 items per store.

## `maxCollectionsPerStore` (type: `integer`):

Cap the number of collection rows pushed per store. Set 0 for unlimited. Example: set 50 if you want category data but don't need every collection.

## `maxContactsPerStore` (type: `integer`):

Cap the total number of contact rows (emails + social handles) pushed per store. Set 0 for unlimited. Contacts are usually 1–8 per store anyway.

## `maxAnalyticsRowsPerStore` (type: `integer`):

Cap the number of analytics rows pushed per store (overall + by product type + by vendor). Set 0 for unlimited. Analytics rows are naturally small (5–20 per store).

## `proxyConfiguration` (type: `object`):

Proxy settings. Apify Residential proxy is enabled by default for reliability. You can switch to a cheaper proxy group or disable it if scraping stores that don't require it.

## Actor input object example

```json
{
  "mode": "scrape",
  "storeUrls": [
    "https://taylorstitch.com",
    "https://tentree.com"
  ],
  "keyword": "gym wear",
  "maxDiscoveryStores": 50,
  "maxProductsPerStore": 100,
  "scrapeCollections": true,
  "extractContacts": true,
  "includeAnalytics": true,
  "outputStoreSummary": true,
  "outputProducts": true,
  "outputCollections": true,
  "outputContacts": true,
  "outputAnalytics": true,
  "maxCollectionsPerStore": 100,
  "maxContactsPerStore": 100,
  "maxAnalyticsRowsPerStore": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# 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 = {
    "mode": "scrape",
    "storeUrls": [
        "https://taylorstitch.com",
        "https://tentree.com"
    ],
    "keyword": "gym wear",
    "maxDiscoveryStores": 50,
    "maxProductsPerStore": 100,
    "maxCollectionsPerStore": 100,
    "maxContactsPerStore": 100,
    "maxAnalyticsRowsPerStore": 100,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("maged120/shopify-intelligence").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 = {
    "mode": "scrape",
    "storeUrls": [
        "https://taylorstitch.com",
        "https://tentree.com",
    ],
    "keyword": "gym wear",
    "maxDiscoveryStores": 50,
    "maxProductsPerStore": 100,
    "maxCollectionsPerStore": 100,
    "maxContactsPerStore": 100,
    "maxAnalyticsRowsPerStore": 100,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("maged120/shopify-intelligence").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 '{
  "mode": "scrape",
  "storeUrls": [
    "https://taylorstitch.com",
    "https://tentree.com"
  ],
  "keyword": "gym wear",
  "maxDiscoveryStores": 50,
  "maxProductsPerStore": 100,
  "maxCollectionsPerStore": 100,
  "maxContactsPerStore": 100,
  "maxAnalyticsRowsPerStore": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call maged120/shopify-intelligence --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=maged120/shopify-intelligence",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Shopify Store Scraper — Products, Prices & Variants",
        "description": "Scrape any public Shopify store to extract all products, pricing, variants, collections, and store metadata — without needing Shopify API access.",
        "version": "0.1",
        "x-build-id": "OjomKeEypuOZxmFK7"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/maged120~shopify-intelligence/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-maged120-shopify-intelligence",
                "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/maged120~shopify-intelligence/runs": {
            "post": {
                "operationId": "runs-sync-maged120-shopify-intelligence",
                "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/maged120~shopify-intelligence/run-sync": {
            "post": {
                "operationId": "run-sync-maged120-shopify-intelligence",
                "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": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Scraping Mode",
                        "enum": [
                            "scrape",
                            "discover"
                        ],
                        "type": "string",
                        "description": "Choose 'scrape' to scrape specific store URLs, or 'discover' to find Shopify stores by niche keyword.",
                        "default": "scrape"
                    },
                    "storeUrls": {
                        "title": "Store URLs",
                        "type": "array",
                        "description": "List of store URLs to extract data from. One URL per line. Used in 'scrape' mode.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "keyword": {
                        "title": "Niche Keyword",
                        "type": "string",
                        "description": "Keyword to discover Shopify stores (e.g. 'gym wear', 'coffee', 'pet accessories'). Used in 'discover' mode."
                    },
                    "maxDiscoveryStores": {
                        "title": "Max Stores to Discover",
                        "minimum": 1,
                        "maximum": 200,
                        "type": "integer",
                        "description": "Maximum number of Shopify stores to find and scrape when using 'discover' mode.",
                        "default": 50
                    },
                    "maxProductsPerStore": {
                        "title": "Max Products Per Store",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Cap the number of products extracted per store. Set 0 for the full catalog. Use 250 for a quick sample run.",
                        "default": 100
                    },
                    "scrapeCollections": {
                        "title": "Extract Collections",
                        "type": "boolean",
                        "description": "Extract the store's product collections (categories). Each collection becomes its own dataset row.",
                        "default": true
                    },
                    "extractContacts": {
                        "title": "Extract Contact Info",
                        "type": "boolean",
                        "description": "Extract email addresses and social media links from the store's contact and about pages.",
                        "default": true
                    },
                    "includeAnalytics": {
                        "title": "Include Price & Inventory Analytics",
                        "type": "boolean",
                        "description": "Compute pricing stats (min/max/avg/median) and inventory summaries per store and per product type.",
                        "default": true
                    },
                    "outputStoreSummary": {
                        "title": "Output: Store Summaries",
                        "type": "boolean",
                        "description": "Include one store summary row per store. Contains product/collection counts, Shopify status, and enrichment flags.",
                        "default": true
                    },
                    "outputProducts": {
                        "title": "Output: Products",
                        "type": "boolean",
                        "description": "Include one row per product scraped. A store with 250 products adds 250 dataset items. Disable if you only need collections or contacts.",
                        "default": true
                    },
                    "outputCollections": {
                        "title": "Output: Collections",
                        "type": "boolean",
                        "description": "Include one row per collection. A store with 400 collections adds 400 dataset items. Disable to reduce volume.",
                        "default": true
                    },
                    "outputContacts": {
                        "title": "Output: Contacts & Social Links",
                        "type": "boolean",
                        "description": "Include one row per email address and one per social platform found. Typically 1–8 items per store.",
                        "default": true
                    },
                    "outputAnalytics": {
                        "title": "Output: Price & Vendor Analytics",
                        "type": "boolean",
                        "description": "Include analytics rows: overall price summary, one per product type, and one per vendor. Typically 5–20 items per store.",
                        "default": true
                    },
                    "maxCollectionsPerStore": {
                        "title": "Limit: Max Collections Per Store",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Cap the number of collection rows pushed per store. Set 0 for unlimited. Example: set 50 if you want category data but don't need every collection.",
                        "default": 100
                    },
                    "maxContactsPerStore": {
                        "title": "Limit: Max Contacts Per Store",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Cap the total number of contact rows (emails + social handles) pushed per store. Set 0 for unlimited. Contacts are usually 1–8 per store anyway.",
                        "default": 100
                    },
                    "maxAnalyticsRowsPerStore": {
                        "title": "Limit: Max Analytics Rows Per Store",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Cap the number of analytics rows pushed per store (overall + by product type + by vendor). Set 0 for unlimited. Analytics rows are naturally small (5–20 per store).",
                        "default": 100
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy settings. Apify Residential proxy is enabled by default for reliability. You can switch to a cheaper proxy group or disable it if scraping stores that don't require it."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
