⚡ Quickstart Guide
Rivenstack AI allows you to deploy and trigger autonomous enterprise AI agents using REST endpoints, Python, or Node.js. All API requests require a valid Bearer token provided in your enterprise dashboard.
Authentication Header
Authorization: Bearer rs_live_prod_991823x
📦 SDK Installation & Setup
Install the official Rivenstack client library to trigger AI agent pipelines directly within your application backend.
Python SDK Example
Python
pip
# Install Rivenstack Python SDK
pip install rivenstack-ai
# Trigger Veronica Voice AI Receptionist Agent
from rivenstack import RivenEngine
engine = RivenEngine(api_key="rs_live_prod_991823x")
# Dispatch Inbound Call Agent
session = engine.agents.veronica.dispatch_call(
phone_number="+1 (800) 555-0199",
clinic_id="AUC_CLINIC_901",
patient_id="PATIENT_88129",
action="APPOINTMENT_REBOOK"
)
print("Call Session Status:", session.status)
# Output: ACTIVE_TALKING (Veronica speaking)