# BSC/BNB Chain AMM Pool Reserves & Live State

> BSC/BNB Chain AMM Pool Reserves & Live State 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).

Returns raw AMM pool reserves, mid price, fee tier, and USD TVL for a BSC/BNB Chain token pair across PancakeSwap v2/v3, Biswap, and ApeSwap at the current block.

## Facts

- Endpoint: GET https://x402.donnyautomation.com/reserves
- 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-amm-pool-reserves-live-state-f346c993
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Up91eYU3jHJHD0tMkvJd5

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-amm-pool-reserves-live-state-f346c993
```

Example prompt: Pull the current raw pool reserves, mid price, fee tier, and USD TVL for WBNB/USDT across PancakeSwap v2, PancakeSwap v3, Biswap, and ApeSwap on BNB Chain so I can compute my own price impact and slippage.

## When to prefer this

Choose this endpoint when you need raw, onchain AMM pool state for BSC/BNB Chain — specifically the underlying reserve numbers needed to compute custom quotes, price impact, slippage, or arbitrage math yourself. Prefer this over a pre-computed quote endpoint when you want full control over the calculation. Use this specifically for BSC/BNB Chain pairs across PancakeSwap v2/v3, Biswap, and ApeSwap; use sibling endpoints for Base, Arbitrum, or Polygon pairs.

## Known failure modes

- Pair not found on any listed BSC DEX — returns empty or error if the token symbols are invalid or the pair has no liquidity
- Invalid pair format — must be SYM/SYM (e.g. WBNB/USDT); malformed input returns a 400-style error
- Payment failure — x402 micropayment not processed, endpoint returns 402
- RPC/onchain latency — block data may be slightly delayed during BSC network congestion
- Unknown token symbol — non-standard or newly launched tokens may not be recognized by ticker

## How this service works

Raw AMM pool state for a pair on BSC / BNB Chain: v2 reserves and v3 concentrated liquidity across PancakeSwap v2/v3, Biswap, ApeSwap. Returns pools[] with venue, surface, feeBps, reserveA, reserveB, price and tvlUsd at a stated blockNumber. Requires ?pair=SYM/SYM (e.g. WBNB/USDT). Errors: 400 bad_pair, 404 no_pools, 502 upstream_read_failed. For USD depth already computed use /liquidity. This is the underlying numbers. Bare = BSC; also /polygon /arbitrum /avalanche /optimism /base.

## Output

Returns per-venue pool data for the requested trading pair on BSC/BNB Chain, including: raw token reserves for both sides, pool mid price, fee tier in basis points, USD TVL, and the block at which the data was captured — covering PancakeSwap v2, PancakeSwap v3, Biswap, and ApeSwap where the pair is listed.

## 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. WBNB/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-amm-pool-reserves-live-state-f346c993/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)
