Documentation

Comprehensive guides, API references, and best practices to help you get the most out of Solinth Suite.

Getting Started

Quick setup and first steps

Code Examples

Installation
npm install @solinth/suite
# or
yarn add @solinth/suite
# or
pnpm add @solinth/suite
Quick Start
import { Solinth } from '@solinth/suite';

const app = new Solinth({
  apiKey: process.env.SOLINTH_API_KEY,
  suites: ['business', 'custom', 'ai']
});

// Initialize dashboard
const dashboard = await app.createDashboard({
  name: 'My Business Metrics',
  widgets: ['revenue', 'customers', 'mrr']
});
API Call
// Fetch metrics
const metrics = await fetch('https://api.solinth.com/v1/metrics', {
  headers: {
    'Authorization': `Bearer ${apiKey}`,
    'Content-Type': 'application/json'
  }
});

const data = await metrics.json();
console.log(data);

Still need help?

Our support team is here to assist you with any questions.