Skip to content

Developers

Developer tools for customer messaging

Use trusted APIs for WhatsApp, SMS, OTP, delivery tracking, and integration workflows.

API-first integration

Connect customer messaging workflows through API concepts designed for product and engineering teams.

Delivery state visibility

Track message lifecycle events so retries, support questions, and downstream systems stay aligned.

Operational handoff

Give business teams enough delivery and billing context to operate the workflow after launch.

Developers

Quickstart

Use the developer surface to understand the API shape, then connect the right channel for your customer workflow.

{
  "event": "message.status_changed",
  "channel": "sms",
  "messageId": "msg_42",
  "status": "carrier_accepted"
}
curl -X POST https://api.mursil.dev/v1/messages \
  -H "Authorization: Bearer $MURSIL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"channel":"sms","to":"+15555555555","body":"Hello from Mursil"}'