# Solana Memecoin Launch Tracker (Pump.fun + Raydium) (`gochujang/solana-memecoin-launchtracker`) Actor

Brand-new Solana memecoins from pump.fun + Raydium with market cap, age, dev wallet, holders, price change. Filter by min/max mcap and age. Catch the next BONK/WIF early. PPE $0.001/token.

- **URL**: https://apify.com/gochujang/solana-memecoin-launchtracker.md
- **Developed by:** [Hojun Lee](https://apify.com/gochujang) (community)
- **Categories:** Developer tools, Automation, News
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

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

## 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

## Solana Memecoin Launch Tracker

> Real-time scanner of freshly-launched Solana memecoins on **Pump.fun**. Returns market cap, ATH market cap, drawdown %, participant count, creator wallet, graduation status, and Telegram alerts. Find early winners and post-pump dumps before everyone else. No API key required.

---

### What It Does

Solana memecoin season is a continuous gold rush — thousands of tokens launched daily on Pump.fun, with bonding-curve graduations to Raydium for the survivors. This Actor:

- Scans **newest launches** OR **currently-live streams** on Pump.fun
- Returns **current market cap, ATH market cap, ATH drawdown %**
- Tracks **graduation status** (complete bonding curve → Raydium migration)
- Surfaces engagement signals: **reply_count, num_participants, livestream presence**
- Filters by age (last N minutes), market-cap range, drawdown
- Telegram alerts for breakout candidates

---

### Why This Matters

- **Early-stage alpha**: tokens with high reply_count + low market cap are concentrated attention farms — sometimes the next 100x.
- **Graduation hunting**: filter `maxMarketCapUsd: 69000` to find tokens close to bonding-curve completion (Raydium listing = liquidity surge).
- **Dump scanner**: filter `minAthDrawdownPct: 80` to find post-pump corpses — useful for studying patterns or pure tape-watching.

---

### Input

| Field | Type | Default | Description |
|-------|------|---------|-------------|
| `scanMode` | string | `newest` | `newest` or `currently_live` |
| `maxAgeMinutes` | integer | `60` | Only return tokens launched within last N minutes |
| `minMarketCapUsd` | integer | `1000` | Skip noise launches below this MC |
| `maxMarketCapUsd` | integer | `0` | Max MC. 0 = no cap. Set ~$69K for graduation candidates |
| `minAthDrawdownPct` | number | `0` | Filter to tokens with drawdown ≥ X%. 80 = find dumps |
| `excludeNsfw` | boolean | `true` | Filter NSFW-flagged tokens |
| `onlyGraduated` | boolean | `false` | Only return Raydium-graduated tokens |
| `sortBy` | string | `created_desc` | `created_desc`, `mcap_desc`, `ath_mcap_desc`, `ath_drawdown_desc`, `reply_desc`, `participants_desc` |
| `limit` | integer | `100` | Max tokens |
| `alertAthMcapUsd` | integer | `0` | Telegram alert if any token's ATH MC ≥ this. 0 = off |
| `telegramBotToken` | string (secret) | — | Bot token |
| `telegramChatId` | string | — | Chat ID |

#### Example: Fresh launches past 30 min, ≥ $10K MC
```json
{"maxAgeMinutes": 30, "minMarketCapUsd": 10000, "sortBy": "mcap_desc", "limit": 50}
````

#### Example: Near-graduation hunt

```json
{"minMarketCapUsd": 50000, "maxMarketCapUsd": 69000, "maxAgeMinutes": 1440, "sortBy": "mcap_desc"}
```

#### Example: Post-pump dump scanner

```json
{"minAthDrawdownPct": 90, "sortBy": "ath_drawdown_desc", "maxAgeMinutes": 1440}
```

#### Example: Live-stream attention farms

```json
{"scanMode": "currently_live", "sortBy": "participants_desc", "limit": 25}
```

***

### Output

```json
{
  "mint": "5wDyJ...",
  "name": "Race To Earn",
  "symbol": "MEMESRACER",
  "description": "Race-themed memecoin with livestream",
  "creator": "0xabc...",
  "created_timestamp": "2026-06-03T13:42:00+00:00",
  "age_minutes": 8.2,
  "usd_market_cap": 3455.45,
  "market_cap_sol": 14.21,
  "ath_market_cap_usd": 5210.00,
  "ath_drawdown_pct": 33.69,
  "ath_market_cap_timestamp": "2026-06-03T13:45:12+00:00",
  "is_graduated": false,
  "is_currently_live": true,
  "reply_count": 142,
  "num_participants": 89,
  "twitter": "https://x.com/...",
  "website": null,
  "image_uri": "https://...",
  "nsfw": false,
  "protocol": "pump",
  "pump_fun_url": "https://pump.fun/coin/5wDyJ..."
}
```

***

### Pricing

- **$0.001 per token returned**

Examples:

- Top 100 newest in last hour: **$0.10**
- Daily sweep (1000 tokens): **$1.00**

***

### Use Cases

**Telegram alpha bot** — Run every 5 min, alert on any token with ATH MC ≥ $500K + age < 30 min:

```json
{
  "maxAgeMinutes": 30,
  "alertAthMcapUsd": 500000,
  "telegramBotToken": "...",
  "telegramChatId": "..."
}
```

**Graduation watchlist** — Hourly check for tokens at $60-69K MC. Buy at $65K, sell into Raydium liquidity migration.

**Creator wallet tracking** — Filter by `creator` field to find repeat launchers. Pair with Smart Money Wallet Tracker.

**Sentiment dashboard** — Aggregate `reply_count` + `num_participants` by hour for attention-volume trend.

***

### Data Sources

- **Pump.fun v3 API** (`frontend-api-v3.pump.fun`)
  - `/coins?sort=created_timestamp` — newest launches
  - `/coins/currently-live` — active livestreams
- Free public API, no auth required

***

### Related Actors

- **[Smart Money Wallet Tracker](https://apify.com/gochujang/smart-money-tracker)** — Cross-reference memecoin creators with known smart-money wallets.
- **[DeFi Yield Scanner](https://apify.com/gochujang/defi-yield-scanner)** — After graduation, find Raydium LP yields.
- **[Crypto ETF Flow Tracker](https://apify.com/gochujang/crypto-etf-flow-tracker)** — Macro liquidity context for memecoin seasons.

***

### Disclaimer

This Actor returns raw on-chain + Pump.fun API data. It is **not investment advice**. Solana memecoins are extremely high-risk and the majority go to zero. Use for research, monitoring, and pattern analysis.

***

***

### 🎬 Live Sample Run

A real run of this actor with default-ish inputs, executed on 2026-06-10:

| Field | Value |
|---|---|
| Items in dataset | 2 |
| Dataset (JSON) | `https://api.apify.com/v2/datasets/rbdBPPdroXRa23C2Y/items?clean=1&format=json` |
| Dataset (CSV) | `https://api.apify.com/v2/datasets/rbdBPPdroXRa23C2Y/items?clean=1&format=csv` |
| Run summary (KVS) | `https://api.apify.com/v2/key-value-stores/Ar8Q7x2WYxahBW9Rd/records/SUMMARY` |
| Run details | `https://api.apify.com/v2/actor-runs/U7rZ59XoGGkoG5A86` |

**Try it now**: pop any of the dataset URLs in your browser to see live output, or hit the API endpoints from your code.

> Want to reproduce? Click **Try Actor** on the Apify Store page and use the input defaults shown above.

### Feedback

[Leave a review on Apify Store](https://apify.com/gochujang/solana-memecoin-launchtracker#reviews)

# Actor input Schema

## `scanMode` (type: `string`):

Which Pump.fun feed to scan. 'newest' = freshly created. 'currently\_live' = active livestreams.

## `maxAgeMinutes` (type: `integer`):

Only return tokens launched within the last N minutes. Default 60 = past hour.

## `minMarketCapUsd` (type: `integer`):

Skip tokens below this current market cap (filters pure noise launches).

## `maxMarketCapUsd` (type: `integer`):

Skip tokens above this. 0 = no max. Set ~$69K to find tokens close to Raydium graduation.

## `minAthDrawdownPct` (type: `number`):

Filter to tokens with current MC at most X% below their ATH. 0 = include all. Set 80 to find rugs/post-pump dumps.

## `excludeNsfw` (type: `boolean`):

Filter out NSFW-flagged tokens.

## `onlyGraduated` (type: `boolean`):

Only return tokens that have completed bonding curve + migrated to Raydium.

## `sortBy` (type: `string`):

Sort order for the returned tokens.

## `limit` (type: `integer`):

Maximum number of tokens to return.

## `alertAthMcapUsd` (type: `integer`):

Send Telegram alert when any token's ATH market cap exceeds this. 0 = disabled.

## `telegramBotToken` (type: `string`):

Telegram bot token for launch alerts.

## `telegramChatId` (type: `string`):

Chat ID to receive alerts.

## Actor input object example

```json
{
  "scanMode": "newest",
  "maxAgeMinutes": 60,
  "minMarketCapUsd": 1000,
  "maxMarketCapUsd": 0,
  "minAthDrawdownPct": 0,
  "excludeNsfw": true,
  "onlyGraduated": false,
  "sortBy": "created_desc",
  "limit": 100,
  "alertAthMcapUsd": 0,
  "telegramChatId": ""
}
```

# Actor output Schema

## `dataset` (type: `string`):

No description

## `summary` (type: `string`):

No description

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("gochujang/solana-memecoin-launchtracker").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 = {}

# Run the Actor and wait for it to finish
run = client.actor("gochujang/solana-memecoin-launchtracker").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 '{}' |
apify call gochujang/solana-memecoin-launchtracker --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Solana Memecoin Launch Tracker (Pump.fun + Raydium)",
        "description": "Brand-new Solana memecoins from pump.fun + Raydium with market cap, age, dev wallet, holders, price change. Filter by min/max mcap and age. Catch the next BONK/WIF early. PPE $0.001/token.",
        "version": "0.1",
        "x-build-id": "Oh7nj6MbnuWBF4XYX"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/gochujang~solana-memecoin-launchtracker/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-gochujang-solana-memecoin-launchtracker",
                "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/gochujang~solana-memecoin-launchtracker/runs": {
            "post": {
                "operationId": "runs-sync-gochujang-solana-memecoin-launchtracker",
                "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/gochujang~solana-memecoin-launchtracker/run-sync": {
            "post": {
                "operationId": "run-sync-gochujang-solana-memecoin-launchtracker",
                "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",
                "properties": {
                    "scanMode": {
                        "title": "Scan Mode",
                        "enum": [
                            "newest",
                            "currently_live"
                        ],
                        "type": "string",
                        "description": "Which Pump.fun feed to scan. 'newest' = freshly created. 'currently_live' = active livestreams.",
                        "default": "newest"
                    },
                    "maxAgeMinutes": {
                        "title": "Max Age (Minutes)",
                        "minimum": 1,
                        "maximum": 10080,
                        "type": "integer",
                        "description": "Only return tokens launched within the last N minutes. Default 60 = past hour.",
                        "default": 60
                    },
                    "minMarketCapUsd": {
                        "title": "Minimum Market Cap (USD)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Skip tokens below this current market cap (filters pure noise launches).",
                        "default": 1000
                    },
                    "maxMarketCapUsd": {
                        "title": "Maximum Market Cap (USD)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Skip tokens above this. 0 = no max. Set ~$69K to find tokens close to Raydium graduation.",
                        "default": 0
                    },
                    "minAthDrawdownPct": {
                        "title": "Min ATH Drawdown (%)",
                        "minimum": 0,
                        "maximum": 100,
                        "type": "number",
                        "description": "Filter to tokens with current MC at most X% below their ATH. 0 = include all. Set 80 to find rugs/post-pump dumps.",
                        "default": 0
                    },
                    "excludeNsfw": {
                        "title": "Exclude NSFW",
                        "type": "boolean",
                        "description": "Filter out NSFW-flagged tokens.",
                        "default": true
                    },
                    "onlyGraduated": {
                        "title": "Only Graduated (Raydium-listed)",
                        "type": "boolean",
                        "description": "Only return tokens that have completed bonding curve + migrated to Raydium.",
                        "default": false
                    },
                    "sortBy": {
                        "title": "Sort By",
                        "enum": [
                            "created_desc",
                            "mcap_desc",
                            "ath_mcap_desc",
                            "ath_drawdown_desc",
                            "reply_desc",
                            "participants_desc"
                        ],
                        "type": "string",
                        "description": "Sort order for the returned tokens.",
                        "default": "created_desc"
                    },
                    "limit": {
                        "title": "Max Tokens",
                        "minimum": 1,
                        "maximum": 500,
                        "type": "integer",
                        "description": "Maximum number of tokens to return.",
                        "default": 100
                    },
                    "alertAthMcapUsd": {
                        "title": "Telegram Alert ATH Market Cap (USD)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Send Telegram alert when any token's ATH market cap exceeds this. 0 = disabled.",
                        "default": 0
                    },
                    "telegramBotToken": {
                        "title": "Telegram Bot Token",
                        "type": "string",
                        "description": "Telegram bot token for launch alerts."
                    },
                    "telegramChatId": {
                        "title": "Telegram Chat ID",
                        "type": "string",
                        "description": "Chat ID to receive alerts.",
                        "default": ""
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
