API
SMS API Reference
REST API endpoints for sending SMS, checking balance, validating numbers, and fetching delivery reports.
Notifymore exposes versioned REST endpoints under `/api/v1`.
Authentication
Include your API key in the Authorization header:
Authorization: Bearer sfgh_live_your_keySend SMS
POST `/api/v1/sms/send`
Send a single message to one recipient.
Bulk SMS
POST `/api/v1/sms/bulk`
Send the same message to multiple recipients in one request.
Wallet balance
GET `/api/v1/balance`
Returns the current wallet balance for the API key owner.
Delivery reports
GET `/api/v1/reports`
Fetch message status and delivery information.
Validate phone numbers
POST `/api/v1/validate`
Normalize and validate Ghana mobile numbers before sending.
Rate limits
API keys are rate limited per minute. Check response headers and API logs if requests are throttled.
For integration examples, see Integrating Ghana SMS API.