Build with NeutralAiz
Powerful APIs for public safety applications. Real-time voice, AI analysis, document generation, and more.
Core APIs
Integrate NeutralAiz capabilities into your applications with our comprehensive API suite.
LiveKit API
Real-time voice and video communication with transcription, WebRTC-powered conferencing, and low-latency streaming.
- Voice/Video Calls
- Real-time Transcription
- Screen Sharing
- Recording
AI Engine SDK
Intelligent analysis, entity extraction, and agentic workflows. Process transcripts and generate insights automatically.
- Entity Extraction
- Sentiment Analysis
- Smart Suggestions
- Agentic Chains
Reports API
Automated document generation from call transcripts. Create incident reports, summaries, and formatted documents.
- Template System
- PDF Generation
- DOCX Export
- Custom Branding
Developer Resources
API documentation, testing tools, and SDK references for integration
Integration Options
Multiple ways to connect your systems with NeutralAiz.
REST APIs
Standard HTTP endpoints for all platform features
Webhooks
Real-time event notifications to your endpoints
Data Streams
Live transcript and analysis data via WebSocket
OAuth 2.0
Secure authentication and authorization
Quick Start
Get up and running in minutes
import { AIEngineClient } from '@neutralaiz/aiengine';
const client = new AIEngineClient({
apiKey: process.env.AIENGINE_API_KEY,
});
// Analyze a transcript
const result = await client.analyze.transcript({
transcript: "Caller: I need to report an incident...",
callId: "call-123",
});
console.log(result.analysis);