Send SMS (GET) API

The Send SMS (GET) API allows you to send SMS instantly using query parameters.

Endpoint Information

GET https://api.moolre.com/open/sms/send

To test in sandbox, use https://sandbox.moolre.com/open/sms/send instead.

Authentication & Headers

Header NameTypeRequiredDescription
X-API-VASKEYstringYesYour unique SMS service VAS Key.

Query Parameters

ParameterTypeRequiredDescription
typeintegerYesMust be 1.
senderidstringYesRegistered and approved Sender ID.
recipientstringYesRecipient phone number.
messagestringYesMessage content (max 160 characters).

Response Examples

200 - Success

SMS sent successfully.

{
  "status": 1,
  "code": "SMS01",
  "message": "Success",
  "data": null,
  "go": null
}

401 - Authentication Error

The VAS Key provided is invalid or unauthorized.

{
  "status": 0,
  "code": "AIN01",
  "message": "Authentication Error",
  "data": null,
  "go": null
}

← Back to AI Documentation Index | View Full API Reference