Retrieve channel by type
curl --request GET \
--url https://api.vambe.me/api/public/channels/{channelType} \
--header 'x-api-key: <x-api-key>'const options = {method: 'GET', headers: {'x-api-key': '<x-api-key>'}};
fetch('https://api.vambe.me/api/public/channels/{channelType}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vambe.me/api/public/channels/{channelType}"
headers = {"x-api-key": "<x-api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Channels Management
Retrieve channel by type
Fetches the channel associated with the specified channel type for the authenticated user.
GET
/
api
/
public
/
channels
/
{channelType}
Retrieve channel by type
curl --request GET \
--url https://api.vambe.me/api/public/channels/{channelType} \
--header 'x-api-key: <x-api-key>'const options = {method: 'GET', headers: {'x-api-key': '<x-api-key>'}};
fetch('https://api.vambe.me/api/public/channels/{channelType}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vambe.me/api/public/channels/{channelType}"
headers = {"x-api-key": "<x-api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Was this page helpful?
