--- title: "Get Single Message (Realtime)" slug: "get-single-message-realtime" updated: 2026-05-14T20:12:26Z published: 2026-05-14T21:50:48Z canonical: "developer.rocket.chat/get-single-message-realtime" stale: true --- > ## Documentation Index > Fetch the complete documentation index at: https://developer.rocket.chat/llms.txt > Use this file to discover all available pages before exploring further. # Get Single Message (Realtime) ![](https://cdn.us.document360.io/27ca1fd4-36d7-4cde-b4eb-97fc1652954c/Images/Documentation/Deprecated.svg) Get a single message by the message ID. | Method | Requires Auth | | --- | --- | | `getSingleMessage` | Yes | ## Payload parameters | Argument | Example | Required | Description | | --- | --- | --- | --- | | `message_id` | `8gMsLe9ApZjo2D2iB` | Required | The message ID. | ## Example call ```json {    "msg": "method",    "method": "getSingleMessage",    "id": "23",    "params": [        "8gMsLe9ApZjo2D2iB"          ] } ``` ## Example response ```json {    "msg": "result",    "id": "23",    "result": {        "_id": "8gMsLe9ApZjo2D2iB",        "rid": "64a1f373376181965ab77f54",        "msg": "Hello World!",        "ts": {            "$date": 1688421173424        },        "u": {            "_id": "LFdhbcNHx5zsMA7T4",            "username": "test.rc",            "name": "Test RC"        },        "_updatedAt": {            "$date": 1688421428832        },        "urls": [],        "mentions": [],        "channels": [],        "md": [            {                "type": "PARAGRAPH",                "value": [                    {                        "type": "PLAIN_TEXT",                        "value": "Hello World!"                    }                ]            }        ],        "starred": []    } } ```