Skip to content
DONNA LogoDONNA

Documentation

Integrate, govern, and extend DONNA across your stack

API Reference

Complete REST API documentation with endpoints, parameters, and examples

  • Authentication (Coming soon)
  • Conversations (Coming soon)
  • Knowledge Base (Coming soon)
  • Contacts (Coming soon)

Webhooks

Real-time event notifications for your application

  • Setup Guide (Coming soon)
  • Event Types (Coming soon)
  • Security (Coming soon)
  • Examples (Coming soon)

Widget Embedding

Add DONNA chat widget to your website or application

  • Quick Start (Coming soon)
  • Customization (Coming soon)
  • Events & Callbacks (Coming soon)
  • Advanced Options (Coming soon)

Voice Gateway

Integrate DONNA voice capabilities into your phone system

  • SIP Integration (Coming soon)
  • Twilio Setup (Coming soon)
  • Call Routing (Coming soon)
  • Voice Customization (Coming soon)

SDKs & Libraries

Official SDKs for popular programming languages

  • JavaScript/Node.js (Coming soon)
  • Python (Coming soon)
  • PHP (Coming soon)
  • Ruby (Coming soon)

Security & Compliance

Security best practices and compliance information

  • Authentication (Coming soon)
  • Rate Limiting (Coming soon)
  • Data Privacy (Coming soon)
  • Compliance (Coming soon)

Quick Start

Get Your API Key

  1. 1.Log in to your DONNA dashboard
  2. 2.Navigate to Settings → API Keys
  3. 3.Click "Generate New API Key"
  4. 4.Copy your key and keep it secure

Make Your First API Call

curl https://api.donna.ai/v1/conversations \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "message": "Hello, DONNA!",
    "contact_id": "contact_123"
  }'