Welcome to the Help Center
Find everything you need to get the most out of the RokuChannel Platform. Browse by category below or use the search to find specific topics.
Need Quick Help?
Use the search bar in the sidebar to quickly find any topic. You can also use keyboard shortcuts: press / to focus the search bar from anywhere on this page.
Common Tasks
-
Create a Channel
Go to the Admin Dashboard and click "New Channel" to set up your first educational channel.
-
Add Video Content
Navigate to a series, create an episode, then attach video assets with streaming URLs.
-
Assign Homework
From any episode page, use the Homework tab to create assignments with due dates.
-
Deploy to Roku
Package your channel using the Roku deployment tools and submit to the Roku Channel Store.
Quick API Example
Here is a quick example of fetching your channels via the API:
// List all channels
const response = await fetch('/api/channels', {
headers: {
'Authorization': 'Bearer YOUR_TOKEN',
'Content-Type': 'application/json'
}
});
const data = await response.json();
console.log(data);