SMS Status API

Check SMS delivery status using message references.

# SMS Status API

Check the delivery status of sent SMS messages. 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 5. |
| ref | array | Yes | Array of message references to check. |

## Response (200 Success)
Status details returned.

```json
{
  "status": 1,
  "code": "ASMQ10",
  "message": "SMS Status",
  "data": [
    {
      "ref": "0338954001737166274",
      "status": 3
    },
    {
      "ref": "uuid--001",
      "status": 2
    }
  ],
  "go": null
}
```

Back to the Moolre AI documentation index