API Reference
Comprehensive documentation of Mas3ndi's SMS API endpoints, request formats, and responses.
API Endpoints
Need an API Key?
Sign up for a developer account to get your API key and start integrating.
Request API KeyAuthentication
Base URL
https://api.mas3ndi.com/v1
All API requests must include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY
GET/api/v2/sms/balance
Check your API key balance
Request
// No request body required. API key passed as a header parameter
// Header: api-key: YOUR_API_KEY
Response
{
"status": "success",
"message": "Balance retrieved successfully",
"data": {
"sms_balance": 500,
"currency": "GHS"
}
}
Getting Started with Authentication
To start using the authentication endpoints, you'll need to:
- Obtain your API key from the dashboard
- Include it in the Authorization header of your requests
- Use the appropriate endpoint based on your needs
- Handle the responses according to your application logic
For more detailed guides and examples, check out our documentation.