🚀 Getting Started
Introduction
Welcome to Fisher AI documentation. Learn how to integrate our powerful voice AI into your applications.
Quick Start
Get up and running with Fisher AI in minutes. Follow our step-by-step guide to make your first API call.
Authentication
Learn how to authenticate your requests using API keys and manage your credentials securely.
Quick Example
JavaScript
Python
cURL
Copy
// Initialize Fisher AI client
import { FisherAI } from '@fisher-ai/sdk';
const client = new FisherAI({
apiKey: 'your-api-key-here'
});
// Generate speech from text
const audio = await client.textToSpeech({
text: 'Hello, world!',
voice: 'emma',
format: 'mp3'
});
// Play the audio
audio.play();