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 Key

Authentication

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:

  1. Obtain your API key from the dashboard
  2. Include it in the Authorization header of your requests
  3. Use the appropriate endpoint based on your needs
  4. Handle the responses according to your application logic

For more detailed guides and examples, check out our documentation.