Quick Start Guide

Get Started in 5 Minutes

Follow these simple steps to integrate SoundTekAI into your application.

1

Sign Up & Get API Key

Create a free account and get your API key from the dashboard. You'll receive $200 in free credits.

Try Free
2

Install SDK

Install the SoundTekAI SDK for your preferred language:

# Node.js
npm install @deepgram/sdk
3

Make Your First Request

Transcribe your first audio file:

const { Deepgram } = require('@deepgram/sdk');

const deepgram = new Deepgram('YOUR_API_KEY');

const response = await deepgram
  .transcription
  .preRecorded({
    url: 'https://example.com/audio.mp3'
  });

console.log(response.results);
4

Explore Features

You're all set! Now explore advanced features:

  • Real-time streaming transcription
  • Speaker diarization
  • Custom vocabulary
  • Multiple language support

Need Help?

Check out our documentation or join our community for support.