Skip to Content
🔥 Fire SMS — Simple, developer-friendly SMS API.Get Started →
DocsQuickstart

âš¡ Quickstart

Get up and running with Fire SMS in under 5 minutes.

Create an account

Sign up at firesms.vercel.app .

Generate an API key

Head to the API Keys section of your dashboard and click New Key. Give it a name and copy the key — you can always reveal it later using your password.

Store your API key securely. Never expose it in client-side code or public repositories.

Send your first text

Pass your API key as api_key in the request body or query string — no Authorization header needed.

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! 🔥" }'

Response

{ "message": "Sent", "balance": 0.4, "cost": 0.2, "success": true }
FieldTypeDescription
messagestringHuman-readable status of the request
balancenumberYour remaining account balance after the send
costnumberThe cost deducted for this message
successbooleantrue when the message was dispatched successfully
Last updated on