Communication Free Tier Available

SMSBlast

Reliable SMS delivery to 200+ countries. Supports Unicode, delivery receipts, and scheduled sending.

Free tier: 100 SMS/month Method: POST

Quick Start

Get started with SMSBlast in 3 steps:

  1. 1. Get your free API key (instant, no credit card)
  2. 2. Activate your key to unlock all endpoints
  3. 3. Make your first request using the examples below

Endpoint

POST https://freeapitools.dev/api/v1/sms/send

Parameters

Name Type Required Description
to string Required Phone number with country code
message string Required SMS text (max 1600 chars)
api_key string Required Your API key. Get one free →

Code Examples

cURL

curl -X POST https://freeapitools.dev/api/v1/sms/send \
  -H "Content-Type: application/json" \
  -d '{"to":"example","message":"example"}'

Node.js / JavaScript

const response = await fetch('https://freeapitools.dev/api/v1/sms/send', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'X-API-Key': 'YOUR_API_KEY'
  },
  body: JSON.stringify({"to":"example","message":"example"})
});
const data = await response.json();
console.log(data);

Python

import requests

response = requests.post(
    'https://freeapitools.dev/api/v1/sms/send',
    json={"to":"example","message":"example"},
    headers={'X-API-Key': 'YOUR_API_KEY'}
)
print(response.json())

Example Response

{
  "id": "sms_abc123",
  "status": "sent",
  "segments": 1,
  "cost": 0
}

Rate Limits

Plan Limit Price
Free 100 SMS/month $0 / month
Enhanced (10x) 10x free tier limits $0 / monthcomplete compatibility check
Unlimited No limits $0 / monthsend environment profile

Start Using SMSBlast for Free

Get your API key instantly. No credit card, no signup form — just a simple API call.

Get Free API Key →