zelloptt / zello-channel-api

WebSocket-based API and SDKs to connect to Zello channels (BETA)
MIT License
85 stars 34 forks source link

[Channels database] Get full channel info - how to? #144

Open OnkelTem opened 3 years ago

OnkelTem commented 3 years ago

Hey guys.

We work on creating a database of active channels. We could collect their names (provided by the channel owners), but we flatly refuse to type in some information about the channels apart from the one already associated with the channel. So there's a HUGE problem of retrieving channel data.

I wonder do you provide a way to acquire channel info by channel name? I know it's not possible with the current API, but maybe that there's an alternative way? I heard there are some channel IDs, which people have been used before for retrieving channel info. However in the current API channel ID is not returned (in onChannelStatus).

Any ideas, zello-people?

vocoded commented 3 years ago

What specific channel metadata do you need?

vinnitu commented 2 years ago

GET https://search.zello.com/find_channels?name=test&get_online=true&get_thumbs=true&get_profile_ts=true

{
  "channel_list": [
    "test"
  ],
  "subscribers": [
    32066
  ],
  "owner": [
    "accel"
  ],
  "channel_options": [
    40
  ],
  "channel_description": [],
  "channel_thumbs": [],
  "channel_online": [
    0
  ],
  "channel_profile_ts": [
    1610742503
  ],
  "ti": [
    null
  ],
  "pages": 1
}