Link Search Menu Expand Document

Method: fragment.getCollectibleInfo

Back to methods index

Fetch information about a fragment collectible, see here » for more info on the full flow.

Parameters:

NameTypeDescriptionRequired
collectibleInputCollectibleCollectible to fetch info about.Yes

Return type: fragment.CollectibleInfo

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();

$fragment_CollectibleInfo = $MadelineProto->fragment->getCollectibleInfo(collectible: $InputCollectible, );