Get channels with accounts
Request
Add the parameter Authorization
to Headers,whose value is to concatenate the Token after the oauth. Example:Authorization: oauth ********************
Request Code Samples
curl --location --request GET 'https://api-v2.streamvi.io/method/platforms/account/channels?v&language&platform&ids&project_id&q&sort&request_id&limit&page' \
--header 'Authorization: oauth <token>'
Responses
application/json {
"results": [
{
"id": "string",
"name": "string",
"photo": "string",
"members": 0,
"connectedId": 0,
"accounts": [
{
"id": "123",
"name": "Account 1",
"avatar": "https://example.com/avatar.png",
"internalId": 123
}
]
}
],
"totalItems": 0,
"totalPages": 0,
"currentPage": 0,
"nextPage": 0
}
Modified at 2025-09-11 17:15:27