Powerful AI bot integration APIs for seamless automation
/api/sms/sendSend SMS messages using Twilio integration. Perfect for notifications, alerts, and verification codes.
{
"to": "+1234567890",
"message": "Your SMS message content here"
}{
"success": true,
"message": "SMS sent successfully",
"sid": "SM123456789abcdef",
"status": "queued"
}curl -X POST https://your-domain.com/api/sms/send \
-H "Content-Type: application/json" \
-d '{
"to": "+1234567890",
"message": "Hello from Xyla AI!"
}'/api/email/sendSend an email using Resend.com integration. Perfect for notifications, alerts, and automated communications.
{
"to": "recipient@example.com",
"subject": "Your email subject",
"email_body": "Your email content here",
"template": 0 // Optional: 0 = Xyla template (default), 1 = Raw email
}/api/memoriesSave a new text memory
{
"content": "Remember to buy groceries tomorrow"
}• GET /api/memories - Get all memories or search
• PUT /api/memories/[id] - Update memory
• DELETE /api/memories/[id] - Delete memory
/api/remindersCreate a new reminder
{
"title": "Meeting with team",
"description": "Discuss project updates", // Optional
"reminder_date": "2024-01-15",
"reminder_time": "14:30"
}• GET /api/reminders - Get all reminders
• PUT /api/reminders/[id] - Update reminder
• DELETE /api/reminders/[id] - Delete reminder
Built by MOHAMED JOURFI & Aboubkerin Mohamed Salem