fragment.GetCollectibleInfo

class pyrogram.raw.functions.fragment.GetCollectibleInfo

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

Details:
  • Layer: 223

  • ID: BE1E85BA

Parameters:

collectible (InputCollectible) – Collectible to fetch info about.

Returns:

fragment.CollectibleInfo

TL Schema

fragment.getCollectibleInfo#be1e85ba
collectible:InputCollectible

= fragment.CollectibleInfo

Parameter Tree

GetCollectibleInfo
└── collectibleInputCollectible
│ └── usernamestring
└── phonestring

Example

await app.invoke(
    GetCollectibleInfo(
        collectible=InputCollectibleUsername(username="text"),
    )
)