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
AnmeldenLoslegen
BRAINIALL
  • X
  • Li
  • GH
KI, die die Realwirtschaft antreibt. Bergbau. Industrie. Sprache. Eigenfinanziert seit 2019.
Produkte
  • AI Autopilot
  • Specialist AIs
Branchen
  • Industrial
  • Bergbau
  • Energie
  • Technologie
Unternehmen
  • Über uns
  • Warum wir
  • Pilotergebnisse
  • Artikel
  • Changelog
  • Kontakt
Ressourcen
  • Preise
  • Entwickler-APIs
  • Docs
  • Integrationen
  • Vergleich
  • Trust Center
  • DPA
  • MSA
  • Status

Stay updated

Specialist AI insights, delivered weekly.

© 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 and NLP 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)
const response = await fetch('https://api.brainiall.com/v1/agents/run', {
  method: 'POST',
  headers: {
    'Authorization': `Bearer ${process.env.BRAINIALL_API_KEY}`,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({ agent: 'legal-research', input: { query: '...' } }),
});
const data = await response.json();
3

Or use any OpenAI SDK

typescript
// Option B: Use any OpenAI-compatible SDK
import OpenAI from 'openai';

const client = new OpenAI({
  apiKey: process.env.BRAINIALL_API_KEY,
  baseURL: 'https://api.brainiall.com/v1',
});

const completion = await client.chat.completions.create({
  model: 'gpt-4o',
  messages: [{ role: 'user', content: 'Analyze this legal document...' }],
});

API Endpoints

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

Agents API

Run specialist AI agents for any sector — industrial, mining, energy, and technology.

POST/v1/agents/run

Models API

Specialist models fine-tuned for speech and industrial domains. Delivered via OpenAI-compatible API.

POST/v1/models/inference

Speech API

Pronunciation assessment, STT, TTS, TTS streaming, and advanced transcription. OpenAI-compatible endpoints.

POST/v1/speech/*

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/agents\
  -H"Authorization: Bearer br_live_xxxxxxxx"\
  -H"Content-Type: application/json"\
  -d '{"agent":"legal-research","input": {"query":"..." } }

Ready to Build?

Get your API key and integrate specialist agents into your product today.

Get API Access
Try the Demo