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
App Integrations
One-click OAuth for Google Analytics, Google Ads, Meta Ads, Google Sheets, Jira, Confluence, BigQuery, and more.
Connect Apps →Core Features
AI-Powered Insights
Automatic pattern detection, anomaly alerts, and natural language analytics powered by AI.
Ask clariBI
Query your data using natural language. Ask questions and get instant visualizations.
Dashboards
Template-based dashboard creation with 250+ industry templates and AI-generated metrics.
Automated Reports
Schedule and distribute PDF reports with AI-generated summaries and insights.
Data Integrations
Connect databases (PostgreSQL, MySQL, SQL Server, Oracle, SQLite), OAuth apps (Google Analytics, Meta Ads, Jira, and more), and file uploads.
Team Collaboration
Share dashboards with workspaces, add comments and @mentions, and manage team permissions.
API Reference
REST API
REST API for integrating clariBI into your applications. JWT authentication and CRUD operations.
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);