Skip to content
CloudVNO

Quickstart

Send your first SMS, make your first call, or verify a phone number in under 5 minutes.

Get started with CloudVNO

This quickstart guide will have you sending your first message in under 5 minutes.

1. Sign up and get your API key

Create a free account at cloudvno.com/signup. You'll receive $10 in free credits and 1,000 free SMS messages.

After signing up, navigate to Settings → API Keys in your dashboard and create a new API key.

2. Install the SDK

# Python
pip install cloudvno

# Node.js
npm install @cloudvno/sdk

# PHP
composer require cloudvno/cloudvno-php

3. Send your first SMS

from cloudvno import Client

client = Client("YOUR_API_KEY")

message = client.messages.send(
    from_="+14155551234",  # Your CloudVNO number
    to="+12125559876",     # Your phone number (for testing)
    body="Hello from CloudVNO!"
)

print(f"Success! Message SID: {message.sid}")

4. What's next?