Tables

Build reliable bots with structured data

Graph showing a shopping assistant helping customer supported by Botpress Table featureGraph showing the interface of Botpress Tables feature
  • Smart Tables

    Easy to create, operate, and manage directly in Botpress Studio.

  • Persistent data

    Maintain real-time data across multiple sessions.

  • Easy to scale

    Effortlessly manage millions of records designed for flexibility and growth.

  • Integration friendly

    Manage Tables with a robust API built for complex operations.

Consistent answers,
powered by easy-to-use Tables.

Get the right data

Include data in a variety of formats, ranging from text to arrays and dates.

Easy filtering

Use natural language and let Botpress AI take care of creating search filters.

Graph showing easy filtering UI
Flexible operations

Botpress supports both single and batch operations to fit any scenario.

Graph showing Botpress Tables getting the right data

What can Tables unlock for you?

If you work with complex back end system like product inventories, appointments, and organization charts, Tables are productivity enhancers.

Icon showing a Shopping Assistant chatbot avatar

CRM System

Centralize customer data, streamline interactions, and personalize marketing with a robust CRM built into your bot.

Icon showing a Inventory Assistant chatbot avatar

Inventory Management

Efficiently track and manage stock levels, streamline reordering, and reduce waste with real-time inventory updates and analytics.

Icon showing a Event Planner chatbot avatar

Track Employee Performance

Monitor and evaluate employee performance with custom metrics and dashboards, ensuring transparency and growth.

Icon showing a Finance Assistant chatbot avatar

Financial Planning & Analysis

Automate data collection, analyze financial trends, and make informed decisions with powerful forecasting and budgeting tools.

Icon showing an Office Assistant chatbot avatar

Event Management System

Organize and manage events with integrated scheduling, registration tracking, and attendee communication, all in one place.

Icon showing a Project Management bot

Project Management

Plan, execute, and monitor projects with ease using collaborative tools designed for teamwide efficiency.

Manage Tables through the Botpress API

Extend your agents’ functionality with our easy-to-use API and SDK.

const options = {
  method: 'PUT'
};

fetch('https://api.botpress.cloud/v1/tables/table/rows', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));