Botpress Tutorial

MA
Reviewed by Marouen Arfaoui · Last tested April 2026 · 157 tools tested

Last updated: April 2026

beginner

What you'll achieve

After this tutorial, you'll have a fully functional, basic AI chatbot deployed on a website. You'll understand how to create a Botpress workspace, build a simple conversation flow using the visual editor, train the bot with your own Q&A, and embed it on a demo webpage. I'll guide you through creating a bot that can answer FAQs about your service or product. You'll gain hands-on experience with the core interface and leave with a shareable, working prototype, giving you the confidence to explore more complex features.

Prerequisites

Step-by-Step Guide

1

Step 1: Sign Up and Create Your First Bot

Head to cloud.botpress.com and click 'Sign Up'. Use your email or a GitHub account. What surprised me was how quickly you get to the action. After verifying your email, you'll land on the dashboard. Click the big '+ Create Bot' button. Here's my honest take: don't get overwhelmed by the template options. For your first bot, select 'Blank Bot'. Give it a clear name like 'My_Support_Bot' and a description. Click 'Create Bot'. Botpress will now provision your bot, which takes about 30 seconds. You'll be automatically redirected to the Bot Studio, which is your main workspace. Don't worry about any other settings for now.

TIP

Use a descriptive bot name; it helps later when managing multiple projects.

2

Step 2: Navigate the Bot Studio Dashboard

The Bot Studio is your command center. On the left, you'll see the main navigation sidebar. 'Flows' is where you visually build conversations—this is your most important tab. 'Content' is for storing reusable messages. 'Q&A' is a fantastic beginner-friendly feature where you can dump questions and answers to train your bot instantly. 'NLU' (Natural Language Understanding) is for more advanced intent training. The large central canvas is where you'll build your flow. On the right, you'll see a properties panel that changes based on what you select. I tested this interface daily, and while it's developer-centric, the Q&A section is the perfect on-ramp for non-coders. Ignore the 'Code' and 'Actions' tabs for now.

TIP

Spend 2 minutes just clicking each main menu item to see what panel opens.

3

Step 3: Train Your Bot with Simple Q&A

This is the fastest way to make a useful bot. Click 'Q&A' in the left menu. Click '+ New Q&A'. In my experience, this is Botpress's secret weapon for beginners. In the 'Questions' field, type variations of a user query, each on a new line. For example: "What are your opening hours?", "When are you open?", "What time do you open?". In the 'Answer' field, write the single, clear response: "We are open from 9 AM to 6 PM, Monday through Friday." Click 'Save & Train'. A notification will say the NLU model is training. Wait 20 seconds. Now, see the magic! Click the 'Emulator' tab (the speech bubble icon in the bottom right). Type "When do you open?" and hit enter. Your bot should respond correctly! This proves the core AI is working.

TIP

Add at least 3-5 different phrasings for each question to make the bot robust.

4

Step 4: Build Your First Visual Conversation Flow

Now let's make a guided conversation. Click 'Flows'. You'll see a default 'main.flow' with a green 'Start' node. Click on the canvas background and drag to pan. Scroll your mouse wheel to zoom. Click on the 'Start' node, then look for the small '+' icon on its right side. Click it to create a new node. A menu appears—select 'Send a Message'. Click on this new node. On the right-side panel, in the 'Message' text box, type a greeting like "Hello! I'm your assistant. How can I help you today?" The flow now has a start and a message. Click the 'Play' button (Test) in the top bar. The emulator opens. You'll see your greeting! This is the foundational skill: connecting nodes to create a dialog path.

TIP

Use the keyboard shortcut 'T' to quickly create a new 'Send a Message' node.

5

Step 5: Embed Your Bot on a Demo Website

A bot in the studio is useless. Let's put it live. Click the 'Integrations' icon (a puzzle piece) in the left sidebar. Find and click on 'Webchat'. Toggle the 'Enabled' switch to ON. This activates the web channel. Scroll down to the 'Embed Code' section. Click 'Copy Code'. This snippet is all you need. Now, open a new browser tab and go to codepen.io. Create a new 'Pen'. Click on the 'HTML' box and paste the copied code. Click 'Run' or 'Update'. What surprised me was the instant gratification—your fully functional AI chatbot will appear in the bottom right corner of the CodePen preview! You can now chat with it. This proves you can embed this anywhere.

TIP

In the Webchat settings, customize the bot name and colors under 'Theme' to match your brand.

6

Step 6: Connect Q&A to Your Flow

Your Q&A and Flow are currently separate. Let's connect them. Go back to your 'main.flow' in the Flows tab. From the left sidebar, under 'Elements', find and drag the 'Q&A' element onto the canvas, placing it after your greeting node. Connect the nodes by dragging from the greeting node's output (right side) to the input (left side) of the Q&A node. Now click on the Q&A node. In the properties panel, you can leave the default settings. This node acts as a router—it will check any user message against your Q&A database. If there's a match, it replies. If not, it can flow to a default 'Not Understood' node. Test it in the Emulator: your greeting appears, and then your Q&A answers should work seamlessly within the flow.

TIP

Always add a node after Q&A to handle unanswered questions, like a fallback message.

Common Mistakes to Avoid

!

Not training after Q&A changes. Always click 'Save & Train' and wait for the confirmation, or your bot won't learn.

!

Creating spaghetti flows. Keep your first flow linear and simple. Avoid dozens of crisscrossing lines.

!

Ignoring the Emulator. Test every single change immediately. Assumptions about bot behavior are often wrong.

!

Using one question variation. Users phrase things unpredictably. 5+ variations per intent is a minimum for reliability.

Next Steps

Check out our Botpress cheat sheet for quick reference on nodes and shortcuts
Explore Botpress alternatives like Voiceflow or Landbot to compare visual builder options
Read our guide on advanced Botpress techniques like using Actions and Hooks
Botpress Cheat SheetQuick reference
Botpress PromptsCopy-paste ready

Frequently Asked Questions

How long does it take to learn Botpress?+
In my experience, you can build a basic FAQ bot in 15 minutes, as this guide shows. However, mastering advanced flows, custom code (Actions), and NLU tuning for complex dialogs takes weeks of hands-on practice. It's a deep platform with a shallow initial on-ramp.
Do I need technical skills to use Botpress?+
For a basic bot using Q&A and visual flows? No. I built my first prototype without code. But to unlock its real power—custom logic, API calls, complex state management—you absolutely need JavaScript/TypeScript skills. It's a hybrid tool: beginner-friendly surface, developer-powered engine.
What can I create with Botpress?+
You can create sophisticated customer support triage bots, interactive product recommenders, internal HR assistants for leave requests, and lead qualification chatbots for websites. I've tested it for multi-step data collection (like gathering patient intake info) and it excels where conversations have structure and logic.
Is Botpress free to use?+
Yes and no. The open-source Community edition is free but you must self-host, which is technical. Botpress Cloud has a very generous free tier for one chatbot with limited conversations, which is perfect for learning. For serious business use, plans start at $99/month. My recommendation: start on Cloud free.
What are the best alternatives to Botpress?+
For visual builders, Voiceflow is excellent for voice and chat design with a better UX for non-devs. Landbot is simpler for pure web chat forms. For pure code flexibility, Rasa is the open-source leader. Botpress sits uniquely between them: more visual than Rasa, more powerful under the hood than Landbot.
Can I use Botpress on mobile?+
The Botpress Studio (where you build) is a web app best used on a desktop. The chatbots you create, however, are fully responsive and work perfectly on mobile websites via the webchat embed or through mobile SDKs for native apps.
What are the limitations of Botpress?+
The main limitation is complexity. It's not as drag-and-drop simple as some no-code rivals. The hybrid model means you'll eventually hit a wall without coding. Also, while the NLP is good, it's not as instantly brilliant as GPT-4 for open-ended chat. It's for structured conversations, not creative companionship.
Was this helpful?