# \[Deprecated] OrderBook API

{% hint style="danger" %}
If you exceed the limit of calls per second or minute, your IP will be permanently blocked.
{% endhint %}

## Get OrderBooks for Address

<mark style="color:blue;">`GET`</mark> `https://open-api.dexlab.space/v1/orderbooks/:address`

Search the open order

#### Path Parameters

| Name    | Type   | Description                                                        |
| ------- | ------ | ------------------------------------------------------------------ |
| address | string | market address( ex. EXnGBBSamqzd3uxEdRLUiYzjJkTwQyorAaFXdfteuGXe ) |

{% tabs %}
{% tab title="200 " %}

```javascript
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"
            }
        ]
    }
}
```

{% endtab %}
{% endtabs %}
