AURA API Documentation
Welcome to the AURA API documentation. AURA is a comprehensive AI platform that provides conversational AI, content generation, analytics, SEO optimization, and much more through a single, powerful API.
Fast & Reliable
<2s response time, 99.9% uptime
Secure
Enterprise-grade security & encryption
Easy to Use
RESTful API with clear documentation
Authentication
All API requests require authentication using your API key. Include your API key in the Authorization header of every request.
Authorization: Bearer YOUR_API_KEY
Keep your API key secure! Never expose it in client-side code or public repositories.
Quick Start
Get started with AURA in minutes. Here's a simple example using the Chat AI endpoint.
JavaScript/Node.js
const response = await fetch('https://api.aura.ai/v1/chat', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
message: 'How can I improve my website SEO?',
context: {
website: 'example.com',
industry: 'e-commerce'
}
})
});
const data = await response.json();
console.log(data.response);Python
import requests
response = requests.post(
'https://api.aura.ai/v1/chat',
headers={
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
json={
'message': 'How can I improve my website SEO?',
'context': {
'website': 'example.com',
'industry': 'e-commerce'
}
}
)
data = response.json()
print(data['response'])cURL
curl -X POST https://api.aura.ai/v1/chat \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"message": "How can I improve my website SEO?",
"context": {
"website": "example.com",
"industry": "e-commerce"
}
}'Rate Limits
Rate limits vary by plan. All responses include rate limit headers.
| Plan | API Calls/Month | Rate Limit |
|---|---|---|
| Starter | 100,000 | 100 requests/minute |
| Professional | 500,000 | 500 requests/minute |
| Business | 2,000,000 | 2,000 requests/minute |
| Enterprise | Unlimited | Custom |
Rate Limit Headers
X-RateLimit-Limit: 500 X-RateLimit-Remaining: 487 X-RateLimit-Reset: 1640995200