# ADH Exchange Listing Radar

> ADH Exchange Listing Radar is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches a curated radar of recent and upcoming cryptocurrency exchange listing and delisting announcements, with entity-resolved tickers and source attribution.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/exch-listing-radar
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/adh-exchange-listing-radar-5384ffe0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C9yvI1zImlGiTOqcqwm3H

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability adh-exchange-listing-radar-5384ffe0
```

Example prompt: Pull the latest exchange listing and delisting radar — I want to see which crypto tokens have been recently announced for delisting or listing on major exchanges, with the source URLs and dates.

## When to prefer this

Choose this endpoint when you need a continuously updated, entity-resolved radar of crypto exchange listing and delisting announcements aggregated from multiple exchanges, with source attribution and ticker normalization built in. Prefer this over manual RSS or web scraping of individual exchange blogs when you want clean, agent-ready structured data without building your own aggregation pipeline. Best for portfolio risk monitoring, token research, and daily crypto market briefings.

## Known failure modes

- Empty result set if no recent announcements in the radar window
- 402 Payment Required if x402 micropayment is not included or fails
- Rate limiting if too many calls are made in a short period
- Stale data if underlying exchange sources have not been refreshed recently
- Possible duplicate items in raw feed if source deduplication is incomplete

## How this service works

Exchange Listing Radar — Aggregates new token listing announcements from Binance, OKX, Bybit, auto-extracts mentioned token codes, sorted by time. Captures listing effects and new asset windows from official exchange APIs.

## Output

Returns a JSON object with a list of recent exchange listing/delisting announcements, each containing the announcement URL, date, title, and exchange name. Also includes a deduplicated list of all ticker symbols mentioned across announcements and the total count of items. Data is labeled with a source identifier and collection timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "raw": {
   "items": [
    {
     "url": "https://www.okx.com/help/okx-to-delist-gods-prcl-and-duck-spot-trading-pairs",
     "date": "2026-08-07",
     "title": "OKX to delist GODS, PRCL and DUCK spot trading pairs",
     "exchange": "OKX"
    },
    {
     "url": "https://www.okx.com/help/okx-to-delist-gods-prcl-and-duck-spot-trading-pairs",
     "date": "2026-08-07",
     "title": "OKX to delist GODS, PRCL and DUCK spot trading pairs",
     "exchange": "OKX"
    }
   ],
   "total": 83,
   "tickers_mentioned": [
    "AERO",
    "AERO"
   ]
  },
  "source": "exch_listing_radar",
  "data_type": "区块链",
  "collected_at": "2026-08-09T18:18:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-exchange-listing-radar-5384ffe0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
