Everything you need to integrate UBLY into your applications. From quick start guides to advanced API references.
Learn the basics of UBLY and create your first Arabic chatbot in minutes.
Read Guide →Complete API documentation with examples in multiple programming languages.
View API →// 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' }) });