SMS Account Status API

Check SMS credit balance.

# SMS Account Status API

Check your SMS credit balance. Note: This API requires X-API-VASKEY in the header for authentication.

## Endpoint
- **Method**: POST
- **URL**: https://api.moolre.com/open/sms/status

## Headers
| Header | Type | Required | Description |
| :--- | :--- | :--- | :--- |
| X-API-VASKEY | string | Yes | Your SMS API VAS key. |

## Request Body
| Parameter | Type | Required | Description |
| :--- | :--- | :--- | :--- |
| type | integer | Yes | Must be 2. |

## Response (200 Success)
Balance returned.

```json
{
  "status": 1,
  "code": "ASMQ03",
  "message": "Account Status",
  "data": {
    "balance": 857
  },
  "go": null
}
```

Back to the Moolre AI documentation index