Interface SearchPublicMessagesByTag

Searches for public channel posts containing the given hashtag or cashtag. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit. Request type for Tdjson#searchPublicMessagesByTag.

interface SearchPublicMessagesByTag {
    @type: "searchPublicMessagesByTag";
    limit: number;
    offset: string;
    tag: string;
}

Properties

Properties

@type: "searchPublicMessagesByTag"
limit: number

The maximum number of messages to be returned; up to 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit.

offset: string

Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results.

tag: string

Hashtag or cashtag to search for.