Initialize conversation protocol or establish new data stream
Complete API reference for integration and development.
Version: 2.0.0 Cyberpunk Edition
Build: Neural Interface Protocol
Developer: Lukman Ferdiansyah
Release: 2025.Q1
Framework: N8N Integration System
{
"email": "user@example.com",
"password": "password123"
}
{
"email": "user@example.com",
"password": "password123",
"username": "User Name"
}
Retrieve all conversations for authenticated user.
{
"conversation_id": "uuid-here",
"message": "Hello AI!",
"model": "gpt-4"
}
{
"username": "New Name",
"avatar": "base64_image_data"
}
{
"webhook_url": "https://n8n.example.com/webhook/chat"
}
Test webhook connectivity and return status.
// Request
{
"messages": [
{"role": "user", "content": "Hello"},
{"role": "assistant", "content": "Hi!"},
{"role": "user", "content": "How are you?"}
],
"model": "gpt-4",
"timestamp": 1234567890
}
// Expected Response
{
"reply": "I'm doing well!",
"model_used": "gpt-4"
}
Click the "New Chat" button in the sidebar to initialize a fresh conversation stream.
Choose your preferred AI model from the dropdown menu in the header. Different models have different capabilities.
Type your message in the input field and press Enter or click the send button. Use Shift+Enter for new lines.
Click the microphone icon to use voice input. Speak your message and it will be transcribed automatically.
Click the image icon to upload images for AI analysis. Supported formats: JPG, PNG, WebP.
Hover over conversations in the sidebar to rename or delete them. All conversations are auto-saved.
Access settings to update your profile, change webhook URL, and customize your experience.
Use the webhook test feature in settings to ensure your N8N integration is working properly.