Skip to main content
AI Autopilot — +6% Durchsatz und $781K jährlicher Gewinnzuwachs in einem 25-tägigen kontrollierten Pilotprojekt. Brasil Mineral #441 (Juli 2024).Pilotergebnisse ansehen
Brainiall
  • Produkte
  • Branchen
  • Demo
  • Pilotergebnisse
  • Warum wir
AnmeldenLive-Demo testen
Brainiall
KI, die die Realwirtschaft antreibt. Bergbau. Industrie. Sprache. Eigenfinanziert seit 2019.
Produkte
  • AI Autopilot
  • Specialist AIs
Branchen
  • Industrie
  • Bergbau
  • Energie
  • Technologie
Unternehmen
  • Über uns
  • Warum wir
  • Pilotergebnisse
  • Artikel
  • Changelog
  • Kontakt
Ressourcen
  • Preise
  • Entwickler-APIs
  • Docs
  • Integrationen
  • Vergleich
  • Trust Center
  • DPA
  • MSA
  • Status

Bleiben Sie auf dem Laufenden

Insights zu spezialisierter KI, wöchentlich geliefert.

© 2026 Brainiall, Inc. Alle Rechte vorbehalten.
DatenschutzerklärungNutzungsbedingungen
Entwickler

API Dokumentation

Mit spezialisierten KI-Agenten entwickeln.

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