Dashboard
API Requests
12.4K
+15%
this week
Active Projects
3
2 in production
Avg Response
42ms
-8ms
faster
Success Rate
99.8%
Excellent
API Playground
// Try VedSAAS API
const response = await fetch('https://api.vedsaas.com/chat', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
message: "नमस्ते, कैसे हैं आप?",
mode: "hindi-vani"
})
});
const data = await response.json();
console.log(data);_
// Output will appear here...