Looking for Buddi for personal use? Shop the Buddi Pin →
Developers

Build with Buddi

REST API, webhooks, and team analytics. Integrate conversation intelligence into your workflows.

GET/v1/conversationsList all conversations
GET/v1/conversations/:id/entitiesExtracted data from a conversation
POST/v1/webhooksConfigure event webhooks
GET/v1/analyticsTeam-level metrics

Quick Start

const response = await fetch(
  'https://api.getbuddi.ai/v1/conversations',
  {
    headers: {
      'Authorization': `Bearer ${API_KEY}`,
      'Content-Type': 'application/json'
    }
  }
);

const { conversations } = await response.json();

conversations.forEach(convo => {
  console.log(convo.contacts);      // Auto-extracted contacts
  console.log(convo.action_items);   // Follow-ups & tasks
  console.log(convo.deal_signals);   // Buying intent signals
});

Webhooks

{
  "event": "conversation.completed",
  "conversation_id": "conv_abc123",
  "rep": "sarah.m@company.com",
  "entities_extracted": 7,
  "crm_synced": true
}
Buddi

Ready to see Buddi in action?

Book a 20-minute demo. We’ll show you the device, the AI, and the CRM sync — live.