curl -G https://api.mavioapp.com/v1/channels \
-H "Authorization: Bearer mvo_live_abc123" \
-d limit=10 \
-d search=product
{
"data": [
{
"id": "chn_a1b2c3d4e5",
"name": "Product Team",
"description": "Weekly product syncs and design reviews",
"visibility": "private",
"member_count": 8,
"meeting_count": 34,
"owner_id": "usr_f6g7h8",
"created_at": "2026-02-15T10:00:00Z",
"updated_at": "2026-04-12T14:30:00Z"
},
{
"id": "chn_f6g7h8i9j0",
"name": "Product Reviews",
"description": "Customer feedback sessions and product demos",
"visibility": "public",
"member_count": 15,
"meeting_count": 12,
"owner_id": "usr_k1l2m3",
"created_at": "2026-03-01T09:00:00Z",
"updated_at": "2026-04-10T16:45:00Z"
}
],
"pagination": {
"total": 2,
"limit": 10,
"offset": 0,
"has_more": false
}
}
Retrieve a paginated list of channels for the authenticated user.
curl -G https://api.mavioapp.com/v1/channels \
-H "Authorization: Bearer mvo_live_abc123" \
-d limit=10 \
-d search=product
{
"data": [
{
"id": "chn_a1b2c3d4e5",
"name": "Product Team",
"description": "Weekly product syncs and design reviews",
"visibility": "private",
"member_count": 8,
"meeting_count": 34,
"owner_id": "usr_f6g7h8",
"created_at": "2026-02-15T10:00:00Z",
"updated_at": "2026-04-12T14:30:00Z"
},
{
"id": "chn_f6g7h8i9j0",
"name": "Product Reviews",
"description": "Customer feedback sessions and product demos",
"visibility": "public",
"member_count": 15,
"meeting_count": 12,
"owner_id": "usr_k1l2m3",
"created_at": "2026-03-01T09:00:00Z",
"updated_at": "2026-04-10T16:45:00Z"
}
],
"pagination": {
"total": 2,
"limit": 10,
"offset": 0,
"has_more": false
}
}
search=product matches “Product Team” and “Product Reviews”).Show Channel object
chn_a1b2c3d4e5).public (visible to all team members) or private (invite-only).curl -G https://api.mavioapp.com/v1/channels \
-H "Authorization: Bearer mvo_live_abc123" \
-d limit=10 \
-d search=product
{
"data": [
{
"id": "chn_a1b2c3d4e5",
"name": "Product Team",
"description": "Weekly product syncs and design reviews",
"visibility": "private",
"member_count": 8,
"meeting_count": 34,
"owner_id": "usr_f6g7h8",
"created_at": "2026-02-15T10:00:00Z",
"updated_at": "2026-04-12T14:30:00Z"
},
{
"id": "chn_f6g7h8i9j0",
"name": "Product Reviews",
"description": "Customer feedback sessions and product demos",
"visibility": "public",
"member_count": 15,
"meeting_count": 12,
"owner_id": "usr_k1l2m3",
"created_at": "2026-03-01T09:00:00Z",
"updated_at": "2026-04-10T16:45:00Z"
}
],
"pagination": {
"total": 2,
"limit": 10,
"offset": 0,
"has_more": false
}
}