# Listing Radar - CEX New Listing & Delisting Monitor (`primevision/listing-radar`) Actor

Monitors official announcement feeds of Binance, Bybit, OKX, Bitget, KuCoin and Upbit for new coin listings and delistings. Normalized schema, cross-run deduplication (pay only for genuinely new events), optional webhook push.

- **URL**: https://apify.com/primevision/listing-radar.md
- **Developed by:** [Prime Vision](https://apify.com/primevision) (community)
- **Categories:** Developer tools, News
- **Stats:** 2 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $10.00 / 1,000 new announcement delivereds

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/docs.md):

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

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.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/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

## Listing Radar — Crypto Exchange New Listing & Delisting Monitor

Monitor **new coin listings and delistings across major crypto exchanges** — Binance, OKX, Bitget, KuCoin and Upbit (plus optional Bybit) — from their **official announcement feeds**, normalized into one clean schema. Catch listing announcements minutes after they are published, before the market fully reacts.

> **Note on Bybit:** Bybit blocks datacenter IP ranges, so it is off by default. Enable it in the input together with an Apify **residential** proxy group and it works too.

### Why this actor

- **One API instead of six.** Every exchange publishes announcements in a different format, endpoint and timezone. Listing Radar normalizes all of them into a single dataset schema.
- **Pay only for NEW events.** Cross-run deduplication means scheduled polling costs you nothing when nothing happened. Run it every 5 minutes on an Apify Schedule and you are charged only when an exchange actually announces something.
- **Ticker extraction built in.** Each event includes the parsed token symbols (e.g. `["AERO"]`), ready for programmatic trading pipelines, alert bots and dashboards.
- **Push, don't poll.** Optional webhook URL — every new announcement is POSTed as JSON to your endpoint (n8n, Make, Zapier, Telegram bridge, your own bot).
- **Delistings too.** Delisting announcements are first-class events — critical for risk management on open positions, including Upbit's Korean-language notices (auto-classified).

### Use cases

- **Listing-pump trading**: new Binance/Upbit/Coinbase-class listings move prices within minutes; feed the events into your execution bot.
- **Risk management**: get delisting warnings for tokens you hold or market-make.
- **Research**: build a historical dataset of listing events and study announcement-to-pump dynamics.
- **Alerting**: pipe events to Telegram/Discord/Slack via the webhook.

### Output example

```json
{
  "id": "binance:5c52a77daddf4e0d9769b87cdc91fae4",
  "exchange": "binance",
  "category": "new_listing",
  "title": "Binance Will Add Aerodrome (AERO) on Earn, Buy Crypto, Convert, VIP Loan & Margin",
  "url": "https://www.binance.com/en/support/announcement/5c52a77daddf4e0d9769b87cdc91fae4",
  "published_at": "2026-07-17T15:45:04+00:00",
  "symbols": ["AERO"]
}
````

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `exchanges` | array | all 6 | Which exchanges to monitor |
| `categories` | array | both | `new_listing`, `delisting` |
| `maxItemsPerSource` | int | 20 | Recent announcements inspected per source |
| `dedupe` | bool | `true` | Charge only for never-seen events (recommended) |
| `notifyWebhookUrl` | string | — | POST every new event to this URL |

### Recommended setup: real-time monitor

1. Create an [Apify Schedule](https://docs.apify.com/schedules) running this actor every 5 minutes.
2. Keep `dedupe: true` (default) — quiet runs deliver zero events and cost only the actor-start fee.
3. Set `notifyWebhookUrl` to your n8n/Make/Telegram-bridge endpoint for instant alerts.

### Pricing (pay-per-event)

You are charged per **new announcement delivered** plus a small actor-start fee. No subscription, no charges for announcements you have already seen.

### Data sources & reliability

Official public announcement APIs of each exchange (no HTML scraping, no login). Each source is fetched independently — one exchange having issues never blocks the others; source errors are reported in the run log.

***

**From the same author:** [Token Unlock Calendar — Upcoming Crypto Unlocks](https://apify.com/primevision/token-unlock-calendar) — upcoming cliff & linear unlocks from DefiLlama, Dropstab and CoinMarketCap in one schema: date, USD value, % of supply, allocation breakdown. Listings tell you *unscheduled* demand shocks; unlocks tell you *scheduled* supply shocks. Together they cover both calendars that move altcoin prices.

***

*Keywords: binance new listing announcement api, bybit new listing monitor, upbit listing alert, crypto delisting monitor, exchange listing tracker, coin listing scanner, new coin listing api, listing pump bot feed*

# Actor input Schema

## `exchanges` (type: `array`):

Which exchanges to monitor.

## `categories` (type: `array`):

Which announcement types to track.

## `maxItemsPerSource` (type: `integer`):

How many recent announcements to inspect per exchange per category.

## `dedupe` (type: `boolean`):

When enabled (recommended for scheduled polling), you are only charged for announcements never seen in previous runs.

## `notifyWebhookUrl` (type: `string`):

If set, every NEW announcement is POSTed to this URL as JSON — plug in Zapier/Make/n8n/Telegram-bridge for instant alerts.

## `proxy` (type: `object`):

Some exchanges (e.g. Bybit) block datacenter IPs — keep Apify Proxy enabled.

## Actor input object example

```json
{
  "exchanges": [
    "binance",
    "okx",
    "bitget",
    "kucoin",
    "upbit"
  ],
  "categories": [
    "new_listing",
    "delisting"
  ],
  "maxItemsPerSource": 20,
  "dedupe": true,
  "notifyWebhookUrl": "",
  "proxy": {
    "useApifyProxy": true
  }
}
```

# 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 = {
    "exchanges": [
        "binance",
        "okx",
        "bitget",
        "kucoin",
        "upbit"
    ],
    "proxy": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("primevision/listing-radar").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 = {
    "exchanges": [
        "binance",
        "okx",
        "bitget",
        "kucoin",
        "upbit",
    ],
    "proxy": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("primevision/listing-radar").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 '{
  "exchanges": [
    "binance",
    "okx",
    "bitget",
    "kucoin",
    "upbit"
  ],
  "proxy": {
    "useApifyProxy": true
  }
}' |
apify call primevision/listing-radar --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Listing Radar - CEX New Listing & Delisting Monitor",
        "description": "Monitors official announcement feeds of Binance, Bybit, OKX, Bitget, KuCoin and Upbit for new coin listings and delistings. Normalized schema, cross-run deduplication (pay only for genuinely new events), optional webhook push.",
        "version": "0.1",
        "x-build-id": "FCJjFEVwKcbRoqEa9"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/primevision~listing-radar/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-primevision-listing-radar",
                "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/primevision~listing-radar/runs": {
            "post": {
                "operationId": "runs-sync-primevision-listing-radar",
                "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/primevision~listing-radar/run-sync": {
            "post": {
                "operationId": "run-sync-primevision-listing-radar",
                "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": {
                    "exchanges": {
                        "title": "Exchanges",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "Which exchanges to monitor.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "binance",
                                "okx",
                                "bitget",
                                "kucoin",
                                "upbit",
                                "bybit"
                            ],
                            "enumTitles": [
                                "Binance",
                                "OKX",
                                "Bitget",
                                "KuCoin",
                                "Upbit",
                                "Bybit (needs residential proxy)"
                            ]
                        },
                        "default": [
                            "binance",
                            "okx",
                            "bitget",
                            "kucoin",
                            "upbit"
                        ]
                    },
                    "categories": {
                        "title": "Announcement categories",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "Which announcement types to track.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "new_listing",
                                "delisting"
                            ],
                            "enumTitles": [
                                "New listings",
                                "Delistings"
                            ]
                        },
                        "default": [
                            "new_listing",
                            "delisting"
                        ]
                    },
                    "maxItemsPerSource": {
                        "title": "Max items per source",
                        "minimum": 1,
                        "maximum": 50,
                        "type": "integer",
                        "description": "How many recent announcements to inspect per exchange per category.",
                        "default": 20
                    },
                    "dedupe": {
                        "title": "Deduplicate across runs",
                        "type": "boolean",
                        "description": "When enabled (recommended for scheduled polling), you are only charged for announcements never seen in previous runs.",
                        "default": true
                    },
                    "notifyWebhookUrl": {
                        "title": "Webhook URL (optional)",
                        "type": "string",
                        "description": "If set, every NEW announcement is POSTed to this URL as JSON — plug in Zapier/Make/n8n/Telegram-bridge for instant alerts.",
                        "default": ""
                    },
                    "proxy": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Some exchanges (e.g. Bybit) block datacenter IPs — keep Apify Proxy enabled.",
                        "default": {
                            "useApifyProxy": true
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
