Get your API token
Log in to your dashboard and visit Account → API to copy your API token. You will add this token to the
Authorization header of every request.If you need help with this step, see the Authentication page for a detailed walkthrough.Register a sender ID
A sender ID is the name or number your recipients see as the message source. You must register one before sending.Visit Sender IDs in your dashboard to register a sender ID. Once approved, use that name as the
sender value in your API requests.Send your first SMS
Make a A successful request returns Save the
POST request to /send-sms with your token, a recipient number, your message text, and your registered sender ID.cURL
200 OK with the following response body:message_id value — you will need it to check delivery status.Each SMS consumes credit from your balance. The
credit_used field in the response tells you how many credits were deducted. A standard single-page SMS costs 1 credit. Messages up to 3 pages are supported.Next steps
You have sent your first message. Explore the rest of the Sling API to add richer messaging to your application:Send SMS guide
Full parameter reference for SMS — groups, contacts, callbacks, and more.
Send RCS guide
Rich messages with cards, carousels, images, and interactive suggestions. Use
fallback_sms and fallback_sms_sender for SMS fallback when RCS is unavailable.SMS API reference
Complete endpoint spec for
POST /send-sms.