diff --git a/src/pages/docs/chat/rooms/history.mdx b/src/pages/docs/chat/rooms/history.mdx
index cef507e3d9..74d1507ece 100644
--- a/src/pages/docs/chat/rooms/history.mdx
+++ b/src/pages/docs/chat/rooms/history.mdx
@@ -3,7 +3,7 @@ title: Message storage and history
meta_description: "Retrieve previously sent messages from history."
---
-The history feature enables users to retrieve messages that have been previously sent in a room. Ably stores chat messages for 30 days by default. You can extend this up to 365 days by [contacting us](https://ably.com/support).
+The history feature enables users to retrieve messages that have been previously sent in a room. [Message persistence](/docs/chat/rooms#persistence) is enabled by default for all chat rooms, with messages stored for 30 days. You can extend this retention period up to 365 days by [contacting us](https://ably.com/support).
## Retrieve previously sent messages
diff --git a/src/pages/docs/chat/rooms/index.mdx b/src/pages/docs/chat/rooms/index.mdx
index a287773942..4e8a3bdfc0 100644
--- a/src/pages/docs/chat/rooms/index.mdx
+++ b/src/pages/docs/chat/rooms/index.mdx
@@ -11,6 +11,12 @@ It is important to note that each room is backed by a single Ably Pub/Sub channe
The channel name is the same as the room name with an appended suffix of `::$chat` (e.g `some-room-id::$chat`). In most cases, you will not need to worry about this, as the Chat SDK handles the channel creation and management for you and capabilities can be configured at the room level.
+### Message persistence
+
+Chat room channels have persistence enabled by default with a retention period of 30 days. This ensures that messages are automatically stored and can be retrieved using the [history feature](/docs/chat/rooms/history).
+
+The default 30-day retention period can be extended up to 365 days by [contacting us](https://ably.com/support). This automatic persistence is essential for supporting features such as [message updates](/docs/chat/rooms/messages#update), [message deletions](/docs/chat/rooms/messages#delete), and [message reactions](/docs/chat/rooms/message-reactions), all of which require access to previously sent messages.
+
## Use a room
Users send messages to a room and subscribe to the room in order to receive messages.
diff --git a/src/pages/docs/chat/rooms/messages.mdx b/src/pages/docs/chat/rooms/messages.mdx
index 6018c86335..d9426b2cbe 100644
--- a/src/pages/docs/chat/rooms/messages.mdx
+++ b/src/pages/docs/chat/rooms/messages.mdx
@@ -7,6 +7,10 @@ Send, update, delete, and receive messages in a chat room with any number of par
A user can also update or delete a message, all users that are subscribed to the room will be notified of the changes.
+
+
## Subscribe to messages