📚 Documentation
Complete guides, API references, and tutorials for your empire
📋 Table of Contents
🚀 Getting Started
🔧 API Reference
🚀 Quick Start Guide
1
Create Your Account
Sign up for Aranya One and verify your email address
// No code required - use the web interface
2
Generate API Key
Get your authentication token from the settings panel
// Go to Settings > API Keys > Generate New Key
const apiKey = "your-api-key-here";
3
Make Your First Request
Test the connection with a simple API call
fetch('https://api.aranyaone.com/v1/status', {
headers: {
'Authorization': 'Bearer ' + apiKey,
'Content-Type': 'application/json'
}
})
.then(response => response.json())
.then(data => console.log(data));
4
Activate Services
Enable the services you want to use for your empire
// Available services:
// - AI Chat Bot
// - SEO Optimizer
// - Analytics Dashboard
// - Social Media Manager
💡 Pro Tip
Start with the AI Chat Bot service - it's the easiest to set up and provides immediate value for your website visitors!
🔧 API Reference
Authentication
Authorization: Bearer YOUR_API_KEY
Endpoints
GET
/api/v1/status
Check service status
Example Response:
{ status: 'operational', uptime: '99.9%' }
POST
/api/v1/chat
Send message to AI chat bot
Example Response:
{ message: 'AI response', confidence: 0.95 }
GET
/api/v1/analytics
Get analytics data
Example Response:
{ visitors: 1234, pageviews: 5678, ... }
POST
/api/v1/seo/analyze
Analyze SEO for a URL
Example Response:
{ score: 85, recommendations: [...] }
⚠️ Rate Limits
Free Plan: 100 requests/hour | Pro Plan: 1,000 requests/hour | Enterprise: Unlimited