[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

NameTypeDescription

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