Back to Guides
Beginner5 min

Quick Start Guide

Get monitoring running in under 5 minutes.

5-Minute Quick Start

Get Customer Support AI Monitor running in your application with a simple REST API call.

Step 1: Get Your API Key

Sign up and get your API key from Settings → API Keys. It starts with amo_.

Step 2: Track a Conversation

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
    }
)

Step 3: View Dashboard

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.

Great Progress!

You've completed this guide. Continue learning or start implementing what you've learned.

Ready to Apply What You've Learned?

Start your free trial and put these concepts into practice.

Start Free Trial