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

    Type Alias AssetsByGroupRequest

    Request parameters for getAssetsByGroup.

    type AssetsByGroupRequest = {
        after?: string;
        before?: string;
        groupKey: string;
        groupValue: string;
        limit?: number;
        options?: DisplayOptions;
        page?: number;
        sortBy?: AssetSortingRequest;
    }
    Index

    Properties

    after?: string

    The cursor for paginating forwards through the assets.

    before?: string

    The cursor for paginating backwards through the assets.

    groupKey: string

    The group classification type to search by (e.g. "collection", "community", "creator").

    groupValue: string

    The collection address or group identifier to retrieve all matching assets for.

    limit?: number

    The maximum number of assets to return (max 1000).

    options?: DisplayOptions

    Display options controlling what extra data is returned.

    page?: number

    The page of results to return (1-indexed).

    The sorting options for the response.