Skip to main content
AI Autopilot delivered +6% throughput and $781K annual profit gain in a 25-day controlled pilot.See Pilot Results
BRAINIALL
  • Products
  • Sectors
  • Pilot Results
  • Why Us
Sign InGet Started
BRAINIALL
  • X
  • Li
  • GH
AI that runs the real economy. Mining. Industrial. Voice. Bootstrapped since 2019.
Products
  • AI Autopilot
  • Specialist AIs
Sectors
  • Industrial
  • Mining
  • Energy
  • Technology
Company
  • About
  • Why Choose Us
  • Pilot Results
  • Articles
  • Changelog
  • Contact Us
Resources
  • Pricing
  • Developer APIs
  • Docs
  • Integrations
  • Compare
  • Trust Center
  • DPA
  • MSA
  • Status

Stay updated

Specialist AI insights, delivered weekly.

© 2026 BrainiAll, Inc. All rights reserved.
Privacy PolicyTerms of Use
Developers

API Documentation

Build with specialist AI agents.

Quick Start

Up and running in 3 steps

OpenAI-compatible API for Brainiall specialist products — Speech AI and NLP endpoints. Works with any OpenAI SDK.

1

Set up your API key

bash
export BRAINIALL_API_KEY="br_live_xxxxxxxx"
2

Make your first call

typescript
// Option A: Direct fetch (no dependencies)
const response = await fetch('https://api.brainiall.com/v1/agents/run', {
  method: 'POST',
  headers: {
    'Authorization': `Bearer ${process.env.BRAINIALL_API_KEY}`,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({ agent: 'legal-research', input: { query: '...' } }),
});
const data = await response.json();
3

Or use any OpenAI SDK

typescript
// Option B: Use any OpenAI-compatible SDK
import OpenAI from 'openai';

const client = new OpenAI({
  apiKey: process.env.BRAINIALL_API_KEY,
  baseURL: 'https://api.brainiall.com/v1',
});

const completion = await client.chat.completions.create({
  model: 'gpt-4o',
  messages: [{ role: 'user', content: 'Analyze this legal document...' }],
});

API Endpoints

OpenAI-compatible endpoints covering NLP, Speech AI, and Image Processing. <200ms response time.

Agents API

Run specialist AI agents for any sector — industrial, mining, energy, and technology.

POST/v1/agents/run

Models API

Specialist models fine-tuned for speech and industrial domains. Delivered via OpenAI-compatible API.

POST/v1/models/inference

Speech API

Pronunciation assessment, STT, TTS, TTS streaming, and advanced transcription. <200ms response time.

POST/v1/speech/*

API-First Architecture

Direct REST API access. OpenAI-compatible — works with any OpenAI SDK. Private SDKs available to customers upon API key registration.

REST API
OpenAI SDK (Python)
OpenAI SDK (Node.js)
cURL

Authentication

All API requests require a Bearer token. Generate API keys from your dashboard — each key is scoped to a project with granular permissions.

  • Bearer token in Authorization header
  • Project-scoped keys with granular permissions
  • Rate limiting: 1,000 req/min (standard), 10,000 req/min (enterprise)
curl
curlhttps://api.brainiall.com/v1/agents\
  -H"Authorization: Bearer br_live_xxxxxxxx"\
  -H"Content-Type: application/json"\
  -d '{"agent":"legal-research","input": {"query":"..." } }

Ready to Build?

Get your API key and integrate specialist agents into your product today.

Get API Access
Try the Demo