Link Search Menu Expand Document

Method: bots.getPopularAppBots

Back to methods index

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

Parameters:

NameTypeDescriptionRequired
offsetstringOffset for pagination, initially an empty string, then re-use the next_offset returned by the previous query.Optional
limitintMaximum number of results to return, see paginationOptional

Return type: bots.PopularAppBots

Can userbots use this method: YES

Can bots use this method: NO

MadelineProto Example (now async for huge speed and parallelism!):

if (!file_exists('madeline.php')) {
    copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';

$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();

$bots_PopularAppBots = $MadelineProto->bots->getPopularAppBots(offset: 'string', limit: $int, );