Dubsway.ai and log in.API Key section./api/chat/mental-health-bot – Mental Health Chatbot/api/chat/stock-bot – Stock Market Learning Bot/api/chat/career – Career Coaching Assistant (coming soon)fetch("https://dubsway.ai/api/chat/stock-bot", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({
messages: [
{ role: "user", content: "How do I start investing in the stock market?" }
]
})
})
.then(res => res.json())
.then(data => console.log("Response:", data));messages – An array of message objects with role and content.{
"role": "assistant",
"content": "To start investing, begin by researching different investment options like mutual funds or index funds..."
}