Developer

API Documentation

Integrate powerful voice AI into your applications with our simple, well-documented REST API and SDKs.

RESTful API

Simple HTTP endpoints with JSON responses. No complex setup required.

Low Latency

Optimized for real-time applications with sub-50ms response times.

Secure

Enterprise-grade API key authentication and end-to-end encryption.

Global CDN

Edge locations worldwide for fast audio delivery everywhere.

API Endpoints

POST/v1/text-to-speech

Convert text to natural speech with customizable voice parameters.

POST/v1/speech-to-text

Transcribe audio files to text with high accuracy.

GET/v1/voices

List all available voices with their properties.

POST/v1/voice-clone

Create a custom voice clone from audio samples.

Quick Start

example.ts
import { AIKyam } from '@aikyam/sdk';

const client = new AIKyam({
  apiKey: process.env.AIKYAM_API_KEY,
});

// Text to Speech
const audio = await client.tts.generate({
  text: "Hello, welcome to Aikyam Labs!",
  voice: "aria",
  model: "tts-1-hd",
});

// Speech to Text
const transcript = await client.stt.transcribe({
  file: audioFile,
  model: "whisper-large-v3",
});

Ready to start building?

Get your API key and make your first call in under 5 minutes.

Get Your API Key