Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.60db.ai/llms.txt

Use this file to discover all available pages before exploring further.

Get Your API Key

First, you’ll need an API key to authenticate your requests:
1

Sign Up

Create an account at app.60db.ai
2

Navigate to API Keys

Go to Settings → API Keys in your dashboard
3

Create New Key

Click “Create API Key” and give it a descriptive name
4

Copy Your Key

Copy your API key and store it securely
Keep your API key secret! Never commit it to version control or expose it in client-side code.

Choose Your SDK

Installation

npm install 60db

Basic Usage

import { SixtyDBClient } from '60db';

// Initialize the client
const client = new SixtyDBClient('your-api-key');

// Text to Speech
const audio = await client.textToSpeech({
  text: 'Hello, world!',
  voice_id: 'default-voice'
});

// Get all voices
const voices = await client.getVoices();
console.log(voices);

Next Steps

Explore Features

Learn about all available features

API Reference

Dive into the complete API documentation

Custom Voices

Create your own custom voice profiles

Memory & RAG

Give your AI persistent memory and upload documents (PDF/DOCX/OCR)

LLM Chat

OpenAI-compatible chat completions with 60db models

Webhooks

Set up webhooks for event notifications