RTMGETLINK
RTMGETLINK is a utility and API endpoint within Real-Time Messaging (RTM) ecosystems designed to retrieve hyperlinks embedded in messages. It is used to surface URLs for link previews, moderation, analytics, and content filtering across channels and conversations.
RTMGETLINK operates by querying a message or set of messages and returning the unique hyperlinks found within
The interface is exposed either as a REST API endpoint or as a library function within the
Example request: GET /rtm/getlink?channel_id=123&message_id=456&limit=5&auth=TOKEN. Example response: { "status":"ok","links":[ {"url":"https://example.com/article","title":"Example Article","host":"example.com","timestamp":1700000000,"preview":{"title":"Example Article","image":"https://example.com/thumb.jpg"} } ] }.
Security and privacy considerations include access control, rate limiting, and redaction of sensitive or internal links.
See also: RTM API, address resolution, link preview, content moderation.