Helius SDK - v2.2.2
    Preparing search index...

    Type Alias GetAssetRequest

    Request parameters for getAsset — fetch a single asset by mint address.

    type GetAssetRequest = {
        id: string;
        options?: {
            showCollectionMetadata?: boolean;
            showFungible?: boolean;
            showInscription?: boolean;
            showUnverifiedCollections?: boolean;
        };
    }
    Index

    Properties

    Properties

    id: string

    The unique identifier of the asset to retrieve. This is typically the mint address of the NFT or token.

    options?: {
        showCollectionMetadata?: boolean;
        showFungible?: boolean;
        showInscription?: boolean;
        showUnverifiedCollections?: boolean;
    }

    Type Declaration

    • OptionalshowCollectionMetadata?: boolean

      Displays metadata for the collection. Defaults to false.

    • OptionalshowFungible?: boolean

      Displays fungible tokens held by the owner. Defaults to false.

    • OptionalshowInscription?: boolean

      Displays inscription details of assets inscribed on-chain. Defaults to false.

    • OptionalshowUnverifiedCollections?: boolean

      Displays grouping information for unverified collections instead of skipping them. Defaults to false.