1. Orders
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
        GET
      • User Orders
        GET
    • 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. Orders

Token Orders

GET
/api/v1/orders
Returns orders related to a token, including swaps, mints, burns, and collects.

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/orders?token=0xaBabc7Ddc03e501d190C676BF3d92ef0e6e87a3C&page_num=1&page_size=5&type=MINUTE5&pool_type=all'

Responses

🟢200Success
application/json
Success
Bodyapplication/json

Example
{
    "success": true,
    "code": 0,
    "data": [
        {
            "id": null,
            "type": "string",
            "attributes": {
                "block_number": null,
                "tx_hash": "string",
                "tx_from_address": "string",
                "tx_sender_address": "string",
                "tx_to_address": "string",
                "from_token_amount": "string",
                "to_token_amount": "string",
                "price_from_in_currency_token": "string",
                "price_to_in_currency_token": "string",
                "price_from_in_usd": "string",
                "price_to_in_usd": "string",
                "block_timestamp": null,
                "kind": "string",
                "volume_in_usd": "string",
                "from_token_address": null,
                "to_token_address": null,
                "pool_address": null,
                "property1": "string",
                "property2": "string"
            }
        }
    ],
    "meta": {
        "token": "string",
        "user": "string",
        "pool": "string",
        "page_num": 0,
        "page_size": 0,
        "type": "string",
        "count": 0,
        "pool_type": "string",
        "property1": "string",
        "property2": "string"
    }
}
Modified at 2026-06-08 09:32:27
Previous
Token Klines
Next
User Orders
Built with