Speechall TypeScript SDK

The official TypeScript SDK for integrating Speechall’s unified speech-to-text API into your JavaScript and TypeScript applications.

See the Full Documentation on GitHub

For comprehensive documentation, advanced features, examples, and troubleshooting, visit the official SDK repository on GitHub.

Installation

npm install @speechall/sdk

Quick Start

import { SpeechallClient } from '@speechall/sdk';

const client = new SpeechallClient({ token: 'YOUR_API_KEY' });

const result = await client.speechToText.transcribeRemote({
    model: 'openai.whisper-1',
    file_url: 'https://example.com/audio.mp3'
});
console.log(result.text);

Next Steps