Getting Started

Overview

Everything you need to integrate OperativeOps into your application

The OperativeOps Integration Kit lets you embed AI executive intelligence directly into your workflows. Connect your data sources, configure agents to your business context, and receive real-time cross-functional insights through our API, webhooks, or native integrations.

Quick Example

example.tstypescript
import { OperativeOps } from '@operativeops/sdk';

const client = new OperativeOps({
  apiKey: process.env.OPS_API_KEY
});

const insight = await client.ask({
  question: "Should we hire 3 more engineers or invest in marketing?",
  agents: ['ceo', 'cto', 'analytics'],
  context: { quarter: 'Q2-2026' }
});

console.log(insight.recommendation);

How It Works

Your application connects to OperativeOps through our REST API or native SDKs. Agent responses are powered by your company data, configured metrics, and cross-functional context.