Turatext

SMS, push, and email notifications

Send notifications across SMS, push, and email from a single API. Use templates with variable substitution for consistent messaging.

One API Call

Send an SMS notification. Call it from your backend, get a JSON response.

POST/api/v1/text/send
curl -X POST https://www.turatext.com/api/v1/text/send \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "to": "+15551234567",
  "channel": "sms",
  "message": "Your verification code is 123456"
}'

Uses the same TuraLogin API key across all Tura services.

One call, every notification channel

SMS, Push, Email

Pick the channel in the request body. Same endpoint, same payload shape, every channel.

Templates

Define message templates with {{variables}}. Reuse them across channels without duplicating content.

Delivery Status

Poll or webhook for delivery confirmation. Know if the message landed or bounced.

Set Up with AI

Paste this into Cursor, Claude, or ChatGPT to set up a TuraText integration.

AI Prompt
Add TuraText to my project. Docs at https://www.turatext.com/SKILL.md . Multi-channel notifications: SMS, push, email. Implement template-based sending.

Tura Cloud

One account, one key. TuraText connects with every Tura Cloud service.

Developer APIs

API-first building blocks for custom integrations.