Build with specialist AI agents.
OpenAI-compatible API for Brainiall specialist products — Speech AI, NLP, and Image Processing endpoints. Works with any OpenAI SDK.
export BRAINIALL_API_KEY="br_live_xxxxxxxx"// 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();// 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);OpenAI-compatible endpoints covering NLP, Speech AI, and Image Processing. Drop-in REST + any OpenAI SDK.
STT, TTS, TTS streaming, pronunciation assessment, and advanced transcription — from shift-handover recordings to control-room calls.
Sentiment, toxicity, and PII detection over maintenance reports, operator logs, and customer text.
OCR, object detection, and visual defect detection — from conveyor belts to finished products.
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.
Direct REST API access. OpenAI-compatible — works with any OpenAI SDK. Private SDKs available to customers upon API key registration.
All API requests require a Bearer token. Generate API keys from your dashboard — each key is scoped to a project with granular permissions.
curlhttps://api.brainiall.com/v1/image/detect\
-H"Authorization: Bearer br_live_xxxxxxxx"\
-F"image=@conveyor-belt.jpg"\
-F"tasks=defects,objects"Get your API key and integrate Brainiall specialist AI into your product today.