API Documentation
Complete reference for the Akomasms REST API
v1.0Base URL:
https://akomasms.com/apiGetting Started
Akomasms provides a RESTful API to send SMS, manage OTPs, and track message delivery. Follow these steps to get started:
1
Create Account
Sign up at akomasms.com and get 10 free test credits.
2
Get API Key
Generate your API key from the dashboard under Developer > API Keys.
3
Send First SMS
Make your first API call using the examples below.
Quick Example
curl -X POST https://akomasms.com/api/v1/sms/send \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"sender": "MyBrand", "message": "Hello!", "recipients": ["233241234567"]}'