Skip to content
CloudVNO
REST API

API Reference

CloudVNO's REST API. All endpoints require authentication via Bearer token.

Base URL: https://api.cloudvno.com
Version: v1

Authentication: Include your API key as Authorization: Bearer YOUR_API_KEY in every request. Learn more →

Quick example

# Send an SMS
curl -X POST https://api.cloudvno.com/v1/messages \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "from": "+14155551234",
    "to": "+12125559876",
    "body": "Hello from CloudVNO API!"
  }'

Messages

Send and receive SMS, MMS, and RCS messages

POST/v1/messagesSend a message
GET/v1/messagesList messages
GET/v1/messages/{sid}Fetch a message
DELETE/v1/messages/{sid}Delete a message

Calls

Make and control voice calls

POST/v1/callsMake an outbound call
GET/v1/callsList calls
GET/v1/calls/{sid}Fetch call details
POST/v1/calls/{sid}Modify a live call
GET/v1/calls/{sid}/recordingsList call recordings

Phone Numbers

Provision and manage phone numbers

GET/v1/available-phone-numbers/{country}/LocalSearch local numbers
GET/v1/available-phone-numbers/{country}/TollFreeSearch toll-free numbers
POST/v1/incoming-phone-numbersProvision a number
GET/v1/incoming-phone-numbersList your numbers
POST/v1/incoming-phone-numbers/{sid}Update number config
DELETE/v1/incoming-phone-numbers/{sid}Release a number

Verifications

Send and check OTP verification codes

POST/v1/verify/sendSend OTP
POST/v1/verify/checkCheck OTP
GET/v1/verify/{sid}Fetch verification status

Number Intelligence

Look up carrier, line type, and spam score

GET/v1/lookups/phone-numbers/{number}Look up a phone number
POST/v1/lookups/batchBatch lookup (up to 1000)

Proxy Sessions

Create and manage number masking proxy sessions

POST/v1/proxy/sessionsCreate a proxy session
GET/v1/proxy/sessionsList proxy sessions
GET/v1/proxy/sessions/{sid}Fetch a session
DELETE/v1/proxy/sessions/{sid}End a session

OpenAPI Specification

The full OpenAPI 3.0 spec is available for download. Use it with Postman, Insomnia, or any API client.