SDK v3.0 Documentation

Complete SDK Reference

Everything you need to integrate SMSLY. Installation, API keys, 13 products, 150+ methods.

Getting Started

Get up and running in 2 minutes

1

Sign Up

Create account at console.smsly.io

2

Get API Key

Copy your API key from settings

3

Install SDK

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")