Skip to main content
AI Autopilot — +6% de débit et $781K de gain de profit annuel lors d'un pilote contrôlé de 25 jours. Brasil Mineral #441 (juil. 2024).Voir les résultats des pilotes
Brainiall
  • Produits
  • Secteurs
  • Démo
  • Résultats des pilotes
  • Pourquoi nous
Se connecterEssayer la démo
Brainiall
L'IA qui fait tourner l'économie réelle. Mines. Industrie. Voix. Autofinancée depuis 2019.
Produits
  • AI Autopilot
  • Specialist AIs
Secteurs
  • Industrie
  • Mines
  • Énergie
  • Technologie
Entreprise
  • À propos
  • Pourquoi nous choisir
  • Résultats des pilotes
  • Articles
  • Changelog
  • Nous contacter
Ressources
  • Tarifs
  • API développeur
  • Docs
  • Intégrations
  • Comparer
  • Centre de confiance
  • DPA
  • MSA
  • Statut

Restez informé

Des insights d’IA spécialisée, livrés chaque semaine.

© 2026 Brainiall, Inc. Tous les droits réservés.
Politique de confidentialitéConditions d’utilisation
Développeurs

Documentation API

Construisez avec des agents d'IA spécialisés.

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