Documentation guides

Learn how to get the most out of Aether AI Support.

Recommended~15 minutes

Getting Started Guide

New to Aether? Follow our step-by-step guide to set up AI-powered support in minutes.

Quick Start

1Create an App

Sign in to the dashboard and create your first app to get your API key.

  1. Go to Dashboard
  2. Click SettingsApps
  3. Click Create App
  4. Copy your API Key

2Install the Widget

Add the support widget to your website with a single script tag.

<!-- Add before </body> -->
<script
  src="https://aether-support-api-1000644784414.us-central1.run.app/widget.js"
  data-app-id="your_app_id"
  data-api-key="your_api_key"
  async
></script>

3Add Knowledge Base Content

Train the AI by crawling your website or adding documents.

  1. Go to Knowledge Base in the dashboard
  2. Click Crawl Website and enter your docs URL
  3. Or manually add FAQ articles
  4. The AI will use this content to answer questions

4Customize (Optional)

Configure colors, welcome messages, and AI behavior.

<script
  src="https://aether-support-api-1000644784414.us-central1.run.app/widget.js"
  data-app-id="your_app_id"
  data-api-key="your_api_key"
  data-primary-color="#8B5CF6"
  data-position="bottom-right"
  data-welcome-message="Hi! How can I help you today?"
  async
></script>

API Overview

All API endpoints are available at https://api.aetherai.support

EndpointDescription
POST /api/support/ticketsCreate a support ticket
GET /api/support/ticketsList tickets for an app
POST /api/widget/chatChat with AI (streaming)
GET /api/kb/searchSearch knowledge base
POST /api/copilot/suggest-repliesAI reply suggestions
POST /api/features/csat/surveysCreate CSAT survey
GET /api/features/canned-responsesList canned responses
POST /api/features/sms/sendSend SMS notification
WS /ws/realtimeReal-time WebSocket updates

See the full API Reference for all endpoints.