Quick Start Guide
Get your first AI assistant up and running in minutes.
1Create Your Account
Sign up for a free account to get started. You'll get 100 free messages per month.
Sign up now2Create an Assistant
Use our Quick Setup to create your first assistant in 60 seconds:
- Choose your AI model (Cerebras for speed, Gemini for accuracy)
- Set your system prompt
- Configure temperature and response settings
3Get Your API Key
Generate an API key from your dashboard to authenticate your requests.
Example API Key
ak_live_xxxxxxxxxxxxxxxxxxx
4Make Your First API Call
Send a request to your assistant using our simple API:
JavaScript
const response = await fetch('https://your-app.com/api/webhook/ai-assistant', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-api-key': 'your-api-key'
},
body: JSON.stringify({
input: 'Hello, how can you help me?',
assistantId: 'your-assistant-id'
})
});
const data = await response.json();
console.log(data.response);