✓ Verified 🌐 Web Scrapers ✓ Enhanced Data

Echo Ai

Connect to Echo AI — the customer interaction platform.

Rating
4.1 (80 reviews)
Downloads
657 downloads
Version
1.0.0

Overview

Connect to Echo AI — the customer interaction platform.

Complete Documentation

View Source →

Echo AI

Connect your agent to Echo AI — a platform where businesses and creators build AI-powered assistants (called Echos) for sales, support, and customer engagement.

With this skill, your agent can discover Echos, read their knowledge bases, and have conversations with them.

Get started

  • Sign up at echoai.so (free tier available)
  • Create your first Echo or browse existing ones
  • Go to Settings → API Keys and generate a key
  • Set the environment variable ECHO_API_KEY to your key

What this skill can do

1. List available Echos (free, no credits)

Discover which AI assistants are available under your API key.

text
GET https://auth.echoai.so/functions/v1/api/assistants
Header: X-API-Key: $ECHO_API_KEY

Response:

json
{
  "assistants": [
    {
      "id": "uuid",
      "name": "Sales Assistant",
      "bio": "I help qualify leads and answer product questions",
      "slug": "sales-assistant",
      "avatar_url": "https://...",
      "tone": "professional",
      "style": "concise",
      "topics": ["pricing", "features", "onboarding"]
    }
  ]
}

2. Get Echo details and knowledge base (free, no credits)

Retrieve an Echo's full profile including FAQs, suggested questions, and personality.

text
GET https://auth.echoai.so/functions/v1/api/assistant/{id}
Header: X-API-Key: $ECHO_API_KEY

Response includes: name, bio, FAQs, preset questions, topics, tone, style, and lore.

If the user's question can be answered from FAQs, answer directly — no chat call needed.

3. Chat with an Echo (costs credits)

Send a message and get a response from the Echo's AI.

text
POST https://auth.echoai.so/functions/v1/api/chat
Header: X-API-Key: $ECHO_API_KEY
Content-Type: application/json

Request:

json
{
  "message": "What pricing plans do you offer?",
  "assistant_id": "the-echo-uuid",
  "session_id": "optional — pass from previous response for continuity",
  "visitor_id": "optional — your identifier for this conversation"
}

Response:

json
{
  "response": "We offer three plans: Starter at $29/mo, Pro at $79/mo...",
  "session_id": "use-this-in-next-message",
  "visitor_id": "your-visitor-identity",
  "assistant_id": "the-echo-uuid"
}

Always pass session_id from the response into the next message to maintain conversation context.

Workflow

When asked to find or list Echos:

  • Call GET /api/assistants
  • Present the results with name, bio, and topics
  • Ask if the user wants details on a specific one

When asked about a specific Echo:

  • Call GET /api/assistant/{id}
  • Present the Echo's profile, FAQs, and suggested questions
  • If the question can be answered from FAQs, answer directly (zero cost)

When the user wants to chat with an Echo:

  • Warn the user: "This will send a message to the Echo and consume the Echo owner's credits. Proceed?"
  • If confirmed, call POST /api/chat
  • Return the response and save the session_id for follow-ups

Error handling

StatusMeaningAction
401API key missing or invalidCheck ECHO_API_KEY is set correctly
402Echo owner out of creditsInform the user, cannot proceed
403Key doesn't have access to this EchoUse correct key or request access
429Rate limit exceededWait and retry (default: 60 req/min)
404Echo or endpoint not foundVerify the Echo ID or endpoint path

Important rules

  • Never make chat calls without explicit user confirmation — they cost the Echo owner credits
  • Always prefer FAQs and Echo info to answer questions when possible (zero cost)
  • Always pass session_id back in follow-up messages to maintain context
  • Rate limits are configurable per API key (default: 60 requests/minute)

About Echo AI

Echo is a platform where anyone can create AI-powered assistants for their business. Echos can be deployed on websites, WhatsApp, Instagram, Telegram, Discord, Slack, and more. They handle sales conversations, customer support, lead qualification, and appointment booking.

Learn more: echoai.so

Installation

Terminal bash

openclaw install echo-ai
    
Copied!

💻Code Examples

}

.txt
### 2. Get Echo details and knowledge base (free, no credits)

Retrieve an Echo's full profile including FAQs, suggested questions, and personality.

Header: X-API-Key: $ECHO_API_KEY

header-x-api-key-echoapikey.txt
Response includes: name, bio, FAQs, preset questions, topics, tone, style, and lore.

**If the user's question can be answered from FAQs, answer directly — no chat call needed.**

### 3. Chat with an Echo (costs credits)

Send a message and get a response from the Echo's AI.
example.json
{
  "assistants": [
    {
      "id": "uuid",
      "name": "Sales Assistant",
      "bio": "I help qualify leads and answer product questions",
      "slug": "sales-assistant",
      "avatar_url": "https://...",
      "tone": "professional",
      "style": "concise",
      "topics": ["pricing", "features", "onboarding"]
    }
  ]
}
example.txt
POST https://auth.echoai.so/functions/v1/api/chat
Header: X-API-Key: $ECHO_API_KEY
Content-Type: application/json
example.json
{
  "message": "What pricing plans do you offer?",
  "assistant_id": "the-echo-uuid",
  "session_id": "optional — pass from previous response for continuity",
  "visitor_id": "optional — your identifier for this conversation"
}
example.json
{
  "response": "We offer three plans: Starter at $29/mo, Pro at $79/mo...",
  "session_id": "use-this-in-next-message",
  "visitor_id": "your-visitor-identity",
  "assistant_id": "the-echo-uuid"
}

Tags

#search_and-research

Quick Info

Category Web Scrapers
Model Claude 3.5
Complexity One-Click
Author darthdens
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
🧠

Ready to Install?

Get started with this skill in seconds

openclaw install echo-ai