clariBI Documentation

Everything you need to get started with AI-powered business intelligence. From quick setup to advanced integrations.

Getting Started

Quick Start Guide

Get up and running with clariBI in under 5 minutes. Connect your first data source and create a report.

Read Guide →

Installation

Set up your clariBI account, configure your organization, and invite your team.

Account Setup →

Your First Report

Step-by-step tutorial to create your first report using templates and AI insights.

Create Report →

API Reference

Complete REST API documentation for developers integrating clariBI into their applications.

View API Docs →

Data Sources

Database Connections

Connect PostgreSQL, MySQL, SQL Server, Oracle, and SQLite.

Setup Guide →

App Integrations

One-click OAuth for Google Analytics, Google Ads, Meta Ads, Google Sheets, Jira, Confluence, BigQuery, and more.

Connect Apps →

File Uploads

CSV, Excel, JSON, PDFs, images, and audio/video with AI processing.

Upload Files →

Core Features

AI-Powered Insights

Automatic pattern detection, anomaly alerts, and natural language analytics powered by AI.

Natural Language Auto-Insights
Learn More →

Ask clariBI

Query your data using natural language. Ask questions and get instant visualizations.

Conversational AI-Powered
Learn More →

Dashboards

Template-based dashboard creation with 440+ industry templates and AI-generated metrics.

440+ Templates AI Metrics
Build Dashboard →

Automated Reports

Schedule and distribute PDF reports with AI-generated summaries and insights.

Scheduled PDF Export
Create Reports →

MCP Catalog & Data Sources

Connect 30+ vendors via the MCP catalog (Stripe, HubSpot, Linear, Notion, GitHub, …), plus native OAuth, direct database connections (PostgreSQL, MySQL, SQL Server, Oracle, SQLite), and file uploads.

MCP catalog Databases OAuth
Explore the MCP catalog →

Team Collaboration

Share dashboards with workspaces, add comments and @mentions, and manage team permissions.

Workspaces Comments
Learn More →

API Reference

REST API

REST API for integrating clariBI into your applications. JWT authentication and CRUD operations.

GET /api/analysis/dashboards/
POST /api/data-sources/
POST /api/conversational/query/
Full API Docs

Code Example

// Generate AI insights
const response = await fetch('/api/conversational/query/', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    data_source_id: 'ds_abc123',
    query: 'What were our top products last month?'
  })
});

const insights = await response.json();
console.log(insights.summary);