Developer API
Integrate BlivoAI smart employees into your platform. A professional REST API with secure authentication, rate limiting, and usage tracking.
Available on Advanced Plans
The API is available on Professional and Enterprise subscriptions only. Get your API key from the dashboard under "API Keys" section.
Log into your dashboard, go to the "API Keys" section, and create a new key. The key is shown only once — save it in a secure location.
// Your API key looks like this: blv_sk_a1b2c3d4e5f67890abcdef1234567890... // Include it in the Authorization header: Authorization: Bearer blv_sk_a1b2c3d4e5f6...
const response = await fetch('https://blivoai.com/api/v1/chat', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer blv_sk_YOUR_KEY_HERE'
},
body: JSON.stringify({
employeeId: 'YOUR_EMPLOYEE_ID',
message: 'Hello! Can you help me with...'
})
});
const result = await response.json();
console.log(result.data.reply); // AI employee responseconst response = await fetch('https://blivoai.com/api/v1/employees', {
headers: {
'Authorization': 'Bearer blv_sk_YOUR_KEY_HERE'
}
});
const result = await response.json();
console.log(result.data); // Array of employees
console.log(result.pagination); // { page, limit, total, totalPages }Need help? Contact us or visit your dashboard to create an API key.
BlivoAI Developer API v1.0 — All rights reserved
