1. Routing
BDEX Public API
  • 默认模块
    • Pairs
      • List Trading Pairs
    • Bargains
      • Market Data
    • TokenPoolStats
      • Token Pool 24h Stats
    • Pool
      • V2 LP Positions
      • List Pools
      • Pool Historical Charts
      • Pool Liquidity Distribution
      • Pool Details
    • Kline
      • Klines (Legacy)
      • Token Chart Klines
      • Pair Klines
      • Pair 24h Summary
      • Pool Klines
      • Token Klines
    • Orders
      • Token Orders
      • User Orders
    • Txs
      • Pool Transactions
    • Token
      • Get Token
      • List Tokens
    • Price
      • Token Price
      • Token Weighted Price
    • Debug
      • Ping
    • Swap
      • Pool Swap History
      • Token Swap History
  • BDEX Routing API
    • Routing
      • Get Swap Quote
        GET
      • Detect Token Transfer Fee
        GET
      • Pool Creation Eligibility
        GET
  1. Routing

Pool Creation Eligibility

GET
/token/pool-eligibility
Checks whether a token pair is eligible for pool creation. Fee-on-transfer tokens are V2-only and must pair with a base token (WBOT/USDT).

Request

Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/token/pool-eligibility?tokenA=0x75edC9335175Fc0552D51D48439F229c10420fe3&tokenB=0xD5452816194a3784dBa983426cCe7c122F4abd30&chainId=968'

Responses

🟢200
application/json
Success
Bodyapplication/json

Example
{
    "chainId": 968,
    "tokenA": {
        "address": "0xD5452816194a3784dBa983426cCe7c122F4abd30",
        "isFeeToken": false,
        "isBaseToken": true,
        "buyFeeBps": 0,
        "sellFeeBps": 0,
        "detected": true
    },
    "tokenB": {
        "address": "0xD5452816194a3784dBa983426cCe7c122F4abd30",
        "isFeeToken": false,
        "isBaseToken": true,
        "buyFeeBps": 0,
        "sellFeeBps": 0,
        "detected": true
    },
    "containsFeeToken": false,
    "canCreatePool": true,
    "allowedProtocols": [
        "v2",
        "v3"
    ],
    "undetermined": false,
    "reason": null
}
🟠400
🟠422
Modified at 2026-06-09 03:36:27
Previous
Detect Token Transfer Fee
Built with