# BSC/BNB Chain DEX Liquidity Depth Checker

> BSC/BNB Chain DEX Liquidity Depth Checker is a paid API for AI agents from x402.donnyautomation.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Analyzes pre-trade liquidity depth for a trading pair on BSC/BNB Chain, classifying market depth and flagging thin liquidity risks across DEX venues.

## Facts

- Endpoint: GET https://x402.donnyautomation.com/risk
- 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/bsc-bnb-chain-dex-liquidity-depth-checker-08350972
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2jyUH90iJdChHq_4dOPTC

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 bsc-bnb-chain-dex-liquidity-depth-checker-08350972
```

Example prompt: Before I trade CAKE/USDT on BSC, can you check how deep the liquidity is — tell me if it's DEEP, MODERATE, SHALLOW, or VERY_THIN, how many venues can route the trade, and whether it's dangerously concentrated in a single DEX?

## When to prefer this

Use this endpoint when you need a fast, pre-trade liquidity sanity check specifically on BSC/BNB Chain. Prefer this over generic price endpoints when the concern is slippage, market depth, or venue concentration risk rather than price alone. Choose the BSC-specific version over the Arbitrum, Polygon, or Base siblings when the trade is on BNB Chain.

## Known failure modes

- Unknown or invalid token symbol returns an error — ensure pair is formatted as SYM/SYM (e.g. CAKE/USDT)
- Token pair with no on-chain liquidity on BSC returns no venues found
- Network outage or BSC RPC issues may cause stale or unavailable pool data
- Newly listed tokens may have insufficient indexing and return incomplete results

## How this service works

Pre-trade depth verdict for a pair on BSC / BNB Chain: is this market thin enough to hurt you. Returns depthClass DEEP|MODERATE|SHALLOW|VERY_THIN, totalTvlUsd, venueCount, topVenueShare, midSpreadBps, flags. Requires ?pair=SYM/SYM (e.g. WBNB/USDT). Errors: 400 bad_pair, 404 no_pools, 502 upstream_read_failed. Depth only - NOT a contract audit or honeypot check. Per-venue detail is /liquidity. Bare = BSC; also /polygon /arbitrum /avalanche /optimism /base.

## Output

Returns a liquidity depth classification (DEEP, MODERATE, SHALLOW, or VERY_THIN) based on live pool TVL, the number of DEX venues able to route the trade, the concentration ratio of the largest venue, a flag if only one venue serves this market, and a flag if cross-venue spreads are abnormally wide.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "pair"
     ],
     "properties": {
      "pair": {
       "type": "string",
       "description": "Token pair as SYM/SYM (e.g. CAKE/USDT). Or pass symbol= to default the quote to USDT."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ts": "2026-07-31T00:00:00.000Z",
  "chainId": 56,
  "network": "bsc"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bsc-bnb-chain-dex-liquidity-depth-checker-08350972/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.donnyautomation.com](https://www.zero.xyz/host/x402.donnyautomation.com/llms.txt)
