This example shows how to turn off the toolbar. By the way, in this case it is always better to turn on the context bar for easy editing.
<!-- element -->
<textarea id="entry">...</textarea>
<!-- call -->
<script>
let app = Redactor('#entry', {
toolbar: false,
extrabar: false,
context: true
});
</script>