Skip to main content
AI Autopilot — 25日間の管理されたパイロットで+6%のスループットと年間$781Kの利益増を達成。Brasil Mineral #441(2024年7月)。パイロット結果を見る
Brainiall
  • 製品
  • 業種
  • デモ
  • パイロット結果
  • 選ばれる理由
ログインライブデモを試す
Brainiall
実体経済を動かすAI。鉱業。産業。音声。2019年よりブートストラップ運営。
製品
  • AI Autopilot
  • Specialist AIs
業種
  • 産業
  • 鉱業
  • エネルギー
  • テクノロジー
会社情報
  • 会社概要
  • 選ばれる理由
  • パイロット成果
  • 記事
  • Changelog
  • お問い合わせ
リソース
  • 料金
  • 開発者向けAPI
  • Docs
  • 連携
  • 比較
  • トラストセンター
  • DPA
  • MSA
  • ステータス

最新情報をお届け

専門特化型AIのインサイトを毎週お届けします。

© 2026 Brainiall, Inc. 無断複写・転載を禁じます。
プライバシーポリシー利用条件
開発者

API ドキュメント

専門のAIエージェントで構築する。

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