Get Customer Support AI Monitor running in your application with a simple REST API call.
Sign up and get your API key from Settings → API Keys. It starts with amo_.
import requests
response = requests.post(
"https://api.csaimonitor.com/api/v1/conversations",
headers={
"X-API-Key": "amo_your_api_key_here",
"Content-Type": "application/json"
},
json={
"conversation_id": "ticket_123",
"platform": "custom",
"messages": [
{"sender_type": "customer", "content": "Hello"},
{"sender_type": "ai", "content": "Hi! How can I help?"}
],
"ai_handled": True
}
)Go to your dashboard to see your data! That's it - you're now monitoring your AI.
💡 Next: See the full Getting Started Guide for complete integration examples and best practices.
You've completed this guide. Continue learning or start implementing what you've learned.
Start your free trial and put these concepts into practice.
Start Free Trial