DocsQuick Start

Quick Start

Get your first AI receptionist answering calls in under 10 minutes. No code required for basic setup — use the API for advanced automation.

Base URL

text
https://api.bavio.in/v1

Step 1 — Get your API key

Log in to your Bavio dashboard and navigate to Settings → API Keys. Generate a key and store it securely. Keys are shown only once.

Step 2 — Make your first request

bash
curl -X GET https://api.bavio.in/v1/agents \
  -H "Authorization: Bearer bv_live_sk_••••••••••••" \
  -H "Content-Type: application/json"

Step 3 — Expected response

json
{
  "success": true,
  "data": [],
  "meta": {
    "total": 0,
    "page": 1
  }
}

SDK support

Official SDKs for Node.js and Python are in development. For now, use any HTTP client against the REST API directly.