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.
Get API Key
Create your account and generate credentials
Learn moreQuick Start
Send your first request in under 5 minutes
Learn moreAPI Reference
Full endpoint documentation
Learn moreQuick 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.