Documentation

    Everything you need to build real-time voice AI applications with OneBudd STS.

    Quick Start

    Real-time voice streaming in minutes

    JavaScript
    app.js
    import { OneBuddClient } from '@onebudd/sdk';
    
    const client = new OneBuddClient({
      baseUrl: 'wss://api.onebudd.com'
    });
    
    // Handle real-time events
    client.on('audio', (data) => playAudio(data));
    client.on('transcript', ({ text, isFinal }) => {
      console.log(isFinal ? 'Final:' : 'Interim:', text);
    });
    
    // Start session and stream audio
    await client.startSession({ auth_token: 'sk_live_xxx' });
    client.sendAudio(audioBuffer);

    Explore the Docs

    Comprehensive guides for every aspect of the OneBudd STS platform.

    Need Help?

    Can't find what you're looking for? Our team is here to help.