> ## Documentation Index
> Fetch the complete documentation index at: https://docs.trysiren.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Message Status

> Fetches the current delivery status of a previously sent notification message

## Header

<ParamField header="Authorization" type="string" required>
  Bearer token for API authentication. Format: `Bearer {{apiToken}}`

  **Required:** API Key with full access
</ParamField>

## Path Parameters

<ParamField name="id" type="UUID" path required>
  Unique ID of the sent notification
</ParamField>

## Response

### Success Response (200 OK)

<ResponseField name="status" type="string" required>
  Current status of the message (enum value)
</ResponseField>

## Response Examples

### Example: Successful Status Check

```json theme={null}
{
  "status": "DELIVERED"
}
```

## Possible Status Values

* `QUEUED`: Message is queued for sending
* `SENT`: Message has been sent to the provider
* `DELIVERED`: Message has been delivered to the recipient
* `FAILED`: Message delivery failed
* `READ`: Message has been read by the recipient (if supported by channel)
