1. Pool
BDEX Public API
  • 默认模块
    • Pairs
      • List Trading Pairs
    • Bargains
      • Market Data
    • TokenPoolStats
      • Token Pool 24h Stats
    • Pool
      • V2 LP Positions
        GET
      • List Pools
        GET
      • Pool Historical Charts
        GET
      • Pool Liquidity Distribution
        GET
      • Pool Details
        GET
    • 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
      • Detect Token Transfer Fee
      • Pool Creation Eligibility
  1. Pool

List Pools

GET
/api/v1/pools
Returns a paginated pool list. Supports keyword search, pool_type (v2/v3/all), and filtering by token or user address.

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 'https://dex-wallet.bohr.life/api/v1/pools?token=0xafea2a5e0587615ced6972e271e5bfe8622ebca2&user=0xf0a2f56505f0dfea980567da88830146b6b5c0b2&page_num=1&page_size=20&pool_type=all&keyword=BOT%20USDT%20V3&sort_by=tvl&sort_order=desc'

Responses

🟢200Success
application/json
Success
Bodyapplication/json

Example
{
    "success": true,
    "code": 0,
    "data": [
        {
            "property1": "string",
            "property2": "string"
        }
    ],
    "meta": {
        "page_num": 0,
        "page_size": 0,
        "count": 0,
        "total": 0,
        "token": "string",
        "pool_type": "string",
        "property1": "string",
        "property2": "string"
    }
}
Modified at 2026-06-08 09:32:27
Previous
V2 LP Positions
Next
Pool Historical Charts
Built with