DataTawk
DataTawk — an AI-Powered BI tool for self-service analytics
DataTawk
DataTawk is a GenBI (Generative Business Intelligence) assistant designed to help teams explore, analyze and act on data using natural language and programmatic tooling.
What Datatawk Does
- Connects to your data sources (databases, CSVs, APIs).
- Executes queries and summarizes results in plain language.
- Generates visualization suggestions and reusable queries.
- Produces actionable insights and recommendations.
Key Features
Quick start
- Prepare your data source and credentials.
- Add the connector for your database or upload a CSV.
- Ask Datatawk questions like "Show monthly revenue by product category".
Example interaction:
Q: "Which product categories grew fastest last quarter?"
A: Datatawk will run the appropriate aggregation, return the top categories, a short plain-language summary, and the SQL used to produce the result.
Usage example - Backend
-- Total sales in the last 3 months by region
SELECT
region,
SUM(sales) AS total_sales
FROM sales
WHERE sale_date >= CURRENT_DATE - INTERVAL '3 months'
GROUP BY region
ORDER BY total_sales DESC;