coinapi / coinapi-sdk

SDKs for CoinAPI

Home Page:https://docs.coinapi.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Get orderbooks current data by multiple symbols

bfischer1121 opened this issue · comments

Hi it would be nice if

var path = this.url + ("/v1/orderbooks/" + symbol_id + "/current");

was something like

var path = this.url + ("/v1/orderbooks/current?filter_symbol_id=" + symbol_id);

to allow filtering by multiple symbols

@Svisstack Yea the API allows it but I'm referring to the SDK method referenced above. It uses the 1st variant that throws errors if you try comma or semi-colon delimited filters. I'm making a custom request instead of using the SDK in this instance, but it would be nice to use the SDK as it has transformResponse

@bfischer1121 This will fix your issue? #43

Yea looks great - thank you

It's merged.