Developer
1,250 credits
BD

Developer API

Full REST API, webhook events, official SDKs, and comprehensive docs. Integrate StdioX Comms into any stack in minutes.

API Credentials

LiveLive API Keysk_live_••••••••••••••••••••••••
TestTest API Keysk_test_••••••••••••••••••••••••

Quick Start

// npm install @stdiox/comms
const stdiox = require('@stdiox/comms');
const client = new stdiox.Client('YOUR_API_KEY');

const message = await client.sms.send(({
from: 'STDIOX',
to: '+1234567890',
message: 'Hello from StdioX Comms!'
});

console.log(message.id, message.status);
// msg_k9fXs2 queued

API Reference

Webhooks

Official SDKs

Node.js
npm install @stdiox/comms
github.com/stdiox/comms-node
Python
pip install stdiox-comms
github.com/stdiox/comms-python
PHP
composer require stdiox/comms
github.com/stdiox/comms-php
Go
go get github.com/stdiox/comms-go
github.com/stdiox/comms-go