Skip to main content
AI Autopilot — +6% throughput and $781K annual profit gain in a 25-day controlled pilot. Brasil Mineral #441 (Jul 2024).See Pilot Results
Brainiall
  • Products
  • Sectors
  • Demo
  • Pilot Results
  • Why Us
Sign InTry Live Demo
Brainiall
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, NLP, and Image Processing 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)
// Analyze a maintenance report with the NLP Suite
const response = await fetch('https://api.brainiall.com/v1/nlp/analyze', {
  method: 'POST',
  headers: {
    'Authorization': `Bearer ${process.env.BRAINIALL_API_KEY}`,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    text: 'Pump P-204 vibration rising after bearing swap...',
    tasks: ['sentiment', 'pii'],
  }),
});
const data = await response.json();
3

Or use the Brainiall SDK

typescript
// Option B: Use the Brainiall SDK
import { Brainiall } from "@brainiall/sdk";

const client = new Brainiall({ apiKey: process.env.BRAINIALL_API_KEY });

// Transcribe a shift-handover recording
const result = await client.speech.transcribe({
  audio: fs.createReadStream("shift-handover.mp3"),
  language: "auto",
});

console.log(result.text);

API Endpoints

OpenAI-compatible endpoints covering NLP, Speech AI, and Image Processing. Drop-in REST + any OpenAI SDK.

Speech AI

STT, TTS, TTS streaming, pronunciation assessment, and advanced transcription — from shift-handover recordings to control-room calls.

POST/v1/speech/transcribe

NLP Suite

Sentiment, toxicity, and PII detection over maintenance reports, operator logs, and customer text.

POST/v1/nlp/analyze

Image Processing

OCR, object detection, and visual defect detection — from conveyor belts to finished products.

POST/v1/image/detect
AI Autopilot

Looking for AI Autopilot?

AI Autopilot, our flagship process-optimization system, is not part of the self-serve API. It is deployed as an enterprise integration that connects to your plant through industrial protocols — OPC UA, Modbus, and OSIsoft PI historians.

OPC UAModbusOSIsoft PI
See integrations

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/image/detect\
  -H"Authorization: Bearer br_live_xxxxxxxx"\
  -F"image=@conveyor-belt.jpg"\
  -F"tasks=defects,objects"

Ready to Build?

Get your API key and integrate Brainiall specialist AI into your product today.

Get API Access
Try the Demo