Skip to main content

AUI Products

AUI provides three products for building and integrating AI agents:
Messaging APIAgent Builder APICLI
PurposeSend & receive messagesCreate & configure agentsDevelop & deploy agents
InterfaceREST + WebSocketRESTTerminal
Statusv1 — StableUpcoming — Mid April 2026Beta — GA April 2026
Best forApp integrationAutomation & CI/CDDay-to-day development

Start from the Playground

The fastest way to experience AUI is through the Playground — no code required.
1

Open the Playground

Go to playground.aui.io and log in with your AUI account.
2

Select an agent

Choose an existing agent or create a new one to start a conversation.
3

Chat

Send messages and see the agent respond in real time. Test how it handles different intents, activates tools, and follows rules.
4

Go to code

When you’re ready to integrate, use the Messaging API to send the same messages programmatically:
cURL
curl -X POST "https://data-services.aui.io/api/ia-controller/api/v1/external/message" \
  -H "Content-Type: application/json" \
  -H "x-network-api-key: your-api-key" \
  -d '{
    "task_id": "your-task-id",
    "text": "I need help finding a product"
  }'

Next Steps