Add ability to request multiple channels from /kraken/channels

It’d be nice if we could request information pertaining to multiple channels via a single HTTP request; similar to how /kraken/streams work.

Calls against /kraken/channels?channel=test_channel1,test_channel2 would return an array of channel objects akin to:

{
    "channels": [
        {
            // ...
            "name": "test_channel1",
            // ...

            "links": {
                // ...
            }
        }, {
            // ...
            "name": "test_channel2",
            // ...

            "links": {
                // ...
            }
        }
    ],
    "links": {
        // ...
    }
}
2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.