RESTful API • Real-time Responses • 99.9% Uptime
https://api.vedsaas.com
Send a message to VedSAAS AI and get intelligent responses
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
{
"message": "नमस्ते, कैसे हैं आप?",
"mode": "hindi-vani",
"conversation_id": "optional_conv_id",
"temperature": 0.7
}
{
"success": true,
"response": "नमस्ते! मैं बिल्कुल ठीक हूं। आप कैसे हैं?",
"conversation_id": "conv_abc123xyz",
"tokens_used": 42,
"mode": "hindi-vani"
}
Retrieve list of all available AI modes
{
"modes": [
{
"id": "hindi-vani",
"name": "Hindi-Vani",
"description": "Natural Hindi conversations",
"languages": ["hi"]
},
{
"id": "vedalogic",
"name": "VedaLogic",
"description": "Ancient wisdom meets AI",
"languages": ["en", "hi", "sa"]
}
]
}
Authenticate and receive API token
{
"email": "user@example.com",
"password": "your_secure_password"
}
{
"success": true,
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"user": {
"id": "user_123",
"email": "user@example.com",
"plan": "pro"
}
}