Free to use — pay only for usage

AI Infrastructure
for MSPs

Composable AI primitives, governance frameworks, and a marketplace — all in one platform. Build AI-powered services for your clients in minutes.

Everything you need to deliver AI services

Composable primitives that work together. No vendor lock-in.

🤖

AI Inference

GPT-4.1, GPT-4.1-mini, embeddings — unified API across models. Rate limiting, caching, and cost tracking built in.

🛡️

AI Governance

EU AI Act, NIST AI RMF, ISO 42001 compliance scanning. Risk assessments and evidence collection automated.

🎤

Voice AI

Real-time voice rooms powered by LiveKit. Build AI voice assistants, coaching bots, and conference solutions.

🌐

Web Intelligence

Crawl and analyze any website. Extract competitive intelligence, prospect research, and market data at scale.

🏪

Marketplace

Publish and discover AI solutions built by MSPs, for MSPs. Revenue share on every sale.

🎓

Academy

AI certifications, hands-on scenarios, and community-contributed knowledge. Level up your team's AI skills.

Simple, transparent pricing

No subscriptions. No per-seat charges. Pay for what you use.

Usage-Based

$0 to start
  • Unlimited users and tenants
  • AI inference at cost + small margin
  • Full governance and safety suite
  • SDK and API access
  • Community marketplace
  • Academy and certifications
  • Real-time usage dashboard
  • Spending alerts and controls
Get Started Free

Build with the SDK

import { OneAI } from '@theoneaiplatform/sdk';

const oneai = new OneAI({ apiKey: process.env.ONEAI_API_KEY });

// AI Inference
const response = await oneai.ai.chat({
  model: 'gpt-4.1-mini',
  messages: [{ role: 'user', content: 'Analyze this environment...' }],
});

// Governance Scan
const scan = await oneai.governance.scan({
  framework: 'eu-ai-act',
  systemDescription: 'Customer support chatbot',
});

// Web Intelligence
const intel = await oneai.web.crawl({
  url: 'https://prospect.com',
  maxPages: 10,
});