FireSMS
Examples

Send an SMS

Code examples for sending SMS messages

💬 Send an SMS

Want to see these examples running end to end? Check out the firesms-examples repo on GitHub — fully working apps in Node.js, TypeScript, Python, and PHP.

curl -X POST https://firesms.vercel.app/api/v1/send \
  -H "Content-Type: application/json" \
  -d '{
    "api_key": "YOUR_API_KEY",
    "to": "27821234567",
    "text": "Hello from Fire SMS"
  }'

On this page