Back to Home

Documentation

Everything you need to integrate UBLY into your applications. From quick start guides to advanced API references.

Quick Start

Getting Started

Learn the basics of UBLY and create your first Arabic chatbot in minutes.

Read Guide →

API Reference

Complete API documentation with examples in multiple programming languages.

View API →

Examples

Explore sample projects and code snippets to accelerate your development.

View Examples →

Browse by Topic

API Preview

REST API

v1.0
// Send a message to UBLY
const response = await fetch('https://api.ubly.ai/v1/chat', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    message: 'مرحبا، كيف يمكنني مساعدتك؟',
    dialect: 'saudi'
  })
});
POST /v1/chat
GET /v1/conversations
GET /v1/analytics
POST /v1/train

SDKs & Libraries