Send SMS (GET) API
Send SMS using simple GET query parameters.
# Send SMS (GET) API
The Send SMS (GET) API allows you to send SMS instantly using query parameters.
## Endpoint
- **Method**: GET
- **URL**: https://api.moolre.com/open/sms/send
## Headers
| Header | Type | Required | Description |
| :--- | :--- | :--- | :--- |
| X-API-VASKEY | string | Yes | Your SMS API VAS key. |
## Query Parameters
| Parameter | Type | Required | Description |
| :--- | :--- | :--- | :--- |
| type | integer | Yes | Must be 1. |
| senderid | string | Yes | Registered and approved Sender ID. |
| recipient | string | Yes | Recipient phone number. |
| message | string | Yes | Message content (max 160 characters). |
## Response (200 Success)
SMS sent successfully.
```json
{
"status": 1,
"code": "SMS01",
"message": "Success",
"data": null,
"go": null
}
```
## Response (401 Authentication Error)
The VAS Key provided is invalid or unauthorized.
```json
{
"status": 0,
"code": "AIN01",
"message": "Authentication Error",
"data": null,
"go": null
}
```