âš¡ 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
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
Success
{
"message": "Sent",
"balance": 0.4,
"cost": 0.2,
"success": true
}| Field | Type | Description |
|---|---|---|
message | string | Human-readable status of the request |
balance | number | Your remaining account balance after the send |
cost | number | The cost deducted for this message |
success | boolean | true when the message was dispatched successfully |
Last updated on