bots.GetPopularAppBots

class pyrogram.raw.functions.bots.GetPopularAppBots

Fetch popular Main Mini Apps, to be used in the apps tab of global search ».

Details:
  • Layer: 223

  • ID: C2510192

Parameters:
  • offset (str) – Offset for pagination, initially an empty string, then re-use the next_offset returned by the previous query.

  • limit (int 32-bit) – Maximum number of results to return, see pagination

Returns:

bots.PopularAppBots

TL Schema

bots.getPopularAppBots#c2510192
offset:string
limit:int

= bots.PopularAppBots

Parameter Tree

GetPopularAppBots
├── offsetstring
└── limitint

Example

await app.invoke(
    GetPopularAppBots(
        offset="text",
        limit=0,
    )
)