Everything you need to integrate SMSLY. Installation, API keys, 13 products, 150+ methods.
Get up and running in 2 minutes
Create account at console.smsly.io
Copy your API key from settings
pip install smsly
from smsly import SMSly
# Initialize
c = SMSly("sk_live_your_api_key")
# Send OTP
c.sms.otp("+1234567890")
# Send marketing SMS
c.sms.marketing("+1234567890", "50% sale today!")
# Verify OTP
result = c.verify.check("+1234567890", "123456")