Reachly API Documentation

Use Reachly API keys to send WhatsApp messages and OTPs from your CRM, finance app, or internal tools.

Authentication

x-api-key: YOUR_REACHLY_SECRET_KEY
Content-Type: application/json

Send OTP

POST /api/public/otp

{
  "to": "+919876543210",
  "code": "123456",
  "ttlMinutes": 10
}

Send Message

POST /api/public/messages

{
  "to": "+919876543210",
  "text": "Hello from Reachly"
}

Template Message

POST /api/public/messages

{
  "to": "+919876543210",
  "template": {
    "name": "hello_world",
    "language": "en_US",
    "parameters": ["Monish"]
  }
}