Welcome to Pinecall Documentation

Pinecall is a powerful Voice AI platform that allows you to create, deploy and manage voice AI agents that sound and interact like humans. Our platform combines state-of-the-art text-to-speech, speech-to-text, and large language models to create fluid, natural conversations.

Whether you're building a customer service agent, an outbound sales bot, or a voice assistant for your application, Pinecall provides the tools and APIs to bring your voice AI vision to life.

What you'll find in our documentation:

  • Comprehensive guides to get started with Pinecall
  • Detailed API reference for each endpoint and SDK
  • Code examples and sample applications
  • Best practices for creating natural-sounding voice AI
  • Tutorials for common use cases and integrations

Quick Navigation

Getting Started

Set up your account and make your first voice AI call

Learn more

API Reference

Explore our RESTful API endpoints and parameters

Learn more
quickstart.js
import { Pinecall } from '@pinecall/sdk';
// Initialize the client
const pinecall = new Pinecall({
apiKey: process.env.PINECALL_API_KEY
});
// Create a simple voice agent
async function createBasicAgent() {
const agent = await pinecall.agents.create({
name: 'Hello World Agent',
voice: 'emily',
language: 'en-US',
prompt: 'You are a helpful assistant that greets users and answers basic questions.'
});
console.log(`Agent created with ID: ${agent.id}`);
return agent;
}
// Run the example
createBasicAgent();

Need help?

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