Back to home
Documentation

Documentation

Everything you need to integrate and get the most out of the Boreal.AI platform.

Getting Started

Get up and running with Boreal.AI in three simple steps.

Step 1

Connect

Link your data sources — databases, APIs, cloud storage — using our secure connectors. Setup takes under 5 minutes.

Step 2

Configure

Choose your AI models, set up dashboards and configure alerts tailored to your business goals.

Step 3

Deploy

Go live with one click. Monitor performance in real-time and iterate based on AI-driven insights.

Core Concepts

Understand the building blocks of the Boreal.AI platform.

Data Pipeline

Ingest, transform and route data from any source in real-time. Our pipeline handles millions of events per second with guaranteed delivery.

AI Models

Pre-trained and custom machine learning models optimized for business use cases. Fine-tune with your own data for maximum accuracy.

Real-time Analytics

Live dashboards and streaming analytics that update in milliseconds. Make decisions based on what's happening now, not yesterday.

API Integration

RESTful APIs with SDKs in Python, Node.js, and more. Integrate Boreal.AI into your existing workflows seamlessly.

Guides

Step-by-step guides for common tasks and advanced configurations.

Installation & Setup

Install the SDK and configure your environment

Authentication & API Keys

Secure your integration with API keys and OAuth

Connecting Data Sources

Link databases, APIs, and cloud storage

Building Dashboards

Create custom dashboards with drag-and-drop

Configuring Alerts

Set up intelligent alerts and notifications

SDKs & Libraries

Official client libraries to integrate Boreal.AI into your stack.

Python SDK
from boreal import BorealClient

client = BorealClient(api_key="your-key")
result = client.analyze(data=your_data)
print(result.insights)
Node.js SDK
import { Boreal } from '@boreal/sdk';

const client = new Boreal({
  apiKey: 'your-key'
});
const result = await client.analyze({
  data: yourData
});
console.log(result.insights);
REST API
curl -X POST \
  https://api.borealtech.solutions \
  /v1/analytics/query \
  -H "Authorization: Bearer your-key" \
  -H "Content-Type: application/json" \
  -d '{"query": "revenue_trends",
       "period": "30d"}'