Dexlab Docs
DexlabCreate TokenPool/SwapMomeTelegram
  • 🤘Introducing
  • PRODUCTS
    • 🔬Token Factory
      • 1️⃣Quick Token Creation Guide
      • 2️⃣Change Token Information (Update Metadata)
      • 3️⃣Manage Token (Burn, Mint, Revoke Freeze, Revoke Mint)
      • 4️⃣Token Hub – Manage & Explore
      • 💹Create OpenBook Market ID
      • ⁉️Token decimal guide
      • ⁉️Factory Fee
      • ⁉️How to check market ID?
      • ⁉️FAQ
      • Terms of service
    • 🤽‍♂️DEX(Swap/LP Pool)
      • 🔄Token Swap
      • 🔱Create Your Own Liquidity Pool – Easy & Fast!
      • ⚙️Provide & Manage Liquidity
    • 👼Mome Launchpad
    • 🔧SuperTools for XPLA
      • CW20 Token Creation
        • 1️⃣Instantiate (Minting)
        • 2️⃣Query Contract
        • 3️⃣Execute (Burn, Send, Logo Updated, etc)
        • ⚠️How to Get My CW20 Token Contract Address
      • CW721 Token Creation (NFT)
        • 1️⃣Instantiate (Minting)
        • 2️⃣Query Contract
        • 3️⃣Execute (Send, Transfer, Burn, etc)
        • ⚠️How to Check My CW721 on XPLA Explorer
    • 🔋SuperDEX for XPLA
      • BI/CI
      • Keplr Wallet Creation
    • 📋Terms of Service
    • 📖Platform Disclaimer
    • 📖SDK & API License Agreement
  • developer hub
    • 🏗️Token & Swap APIs
      • API Key Issuance Guide
      • Swap API
      • Token Creator API
    • Dexlab Factory Bot
  • ADDITIONAL RESOURCES
    • Twitter
    • Discord
    • Telegram
    • Medium
Powered by GitBook

© Copyright 2025 DEXLAB | All Rights Reserved

On this page
  1. API DOCUMENTATION
  2. [Deprecated] REST API

[Deprecated] OrderBook API

You can inquire the quotes of DEX exchange.

If you exceed the limit of calls per second or minute, your IP will be permanently blocked.

Get OrderBooks for Address

GET https://open-api.dexlab.space/v1/orderbooks/:address

Search the open order

Path Parameters

Name
Type
Description

address

string

market address( ex. EXnGBBSamqzd3uxEdRLUiYzjJkTwQyorAaFXdfteuGXe )

HTTP/1.1 200 OK
{
    "success": true,
    "data": {
        "lastOrderPrice": 15513.1,
        "bids": [
            {
                "price": 0.1,
                "size": 60,
                "side": "buy"
            },
            {
                "price": 5000,
                "size": 0.0001,
                "side": "buy"
            }
        ],
        "asks": [
            {
                "price": 15513.1,
                "size": 2,
                "side": "sell"
            },
            {
                "price": 15525,
                "size": 3.4393000000000002,
                "side": "sell"
            }
        ]
    }
}

Last updated 2 months ago

🔌