rozod
    Preparing search index...

    Variable getToolboxServiceV2AssetsSearchConst Api Param Description

    getToolboxServiceV2AssetsSearch: EndpointGeneric<
        {
            audioAlbum?: string;
            audioArtist?: string;
            audioMaxDurationSeconds?: null
            | number;
            audioMinDurationSeconds?: number;
            audioTypes?: null | ("Music" | "SoundEffect")[];
            categoryPath?: string;
            creator?: string;
            excludedModelSubTypes?: null | ("Ad" | "MaterialPack" | "Package")[];
            facets?: null | string[];
            groupId?: null | number;
            includedInstanceTypes?:
                | null
                | ("Animation" | "Script" | "Audio" | "Decal" | "MeshPart" | "Tool")[];
            includeOnlyVerifiedCreators?: boolean;
            includeTopCharts?: null | boolean;
            maxPageSize?: number;
            maxPriceCents?: null | number;
            minPriceCents?: number;
            modelSubTypes?: null | ("Ad" | "MaterialPack" | "Package")[];
            musicChartType?: "None" | "Current" | "Week" | "Month" | "Year";
            pageNumber?: null | number;
            pageToken?: string;
            query?: string;
            searchCategoryType:
                | "Plugin"
                | "Audio"
                | "Model"
                | "Decal"
                | "MeshPart"
                | "Video"
                | "FontFamily";
            searchView?: "IDs"
            | "Core"
            | "Full";
            sortCategory?:
                | "Relevance"
                | "Trending"
                | "Top"
                | "AudioDuration"
                | "CreateTime"
                | "UpdatedTime"
                | "Ratings";
            sortDirection?: "None"
            | "Ascending"
            | "Descending";
            userId?: null | number;
        },
        | null
        | {
            creatorStoreAssets: | null
            | {
                asset: | null
                | {
                    assetTypeId: null
                    | number;
                    createTime: null | string;
                    description: null | string;
                    id: number;
                    name: null | string;
                    previewAssets:
                        | null
                        | {
                            imagePreviewAssets: (...)
                            | (...);
                            videoPreviewAssets: (...) | (...);
                        };
                    socialLinks: null
                    | { linkType: ...; title: ...; url: ... }[];
                    updateTime: null | string;
                };
                creator: | null
                | {
                    creator: null
                    | string;
                    groupId: null | number;
                    name: null | string;
                    userId: null | number;
                    verified: null | boolean;
                };
                creatorStoreProduct: | null
                | {
                    purchasable: boolean;
                    purchasePrice: | null
                    | { currencyCode: (...)
                    | (...); quantity: (...) | (...) };
                };
                voting: | null
                | {
                    canVote: boolean;
                    downVotes: number;
                    hasVoted: boolean;
                    showVotes: boolean;
                    upVotePercent: number;
                    upVotes: number;
                    userVote: null
                    | boolean;
                    voteCount: number;
                };
            }[];
            filteredKeyword: null
            | string;
            nextPageToken: null | string;
            queryFacets:
                | null
                | { appliedFacets: null
                | string[]; availableFacets: null | string[] };
            totalResults: number;
        },
        undefined,
    > = ...

    GET https://apis.roblox.com/cloud/toolbox-service/v2/assets:search Search Creator Store Assets searchCategoryType The asset type to search within. query The search terms used to filter the results. modelSubTypes When searching for models, the subtypes associated with the search results. excludedModelSubTypes When searching for models, the subtypes not associated with the search results. creator Deprecated: Please refer to the 'userId' and 'groupId' properties instead. The creator type and ID. E.g. "user/123" or "group/456" userId The User ID of the creator. Only one of 'userId' and 'groupId' can be present in a query. groupId The Group ID of the creator. Only one of 'userId' and 'groupId' can be present in a query. pageToken The identifier for the desired search results page. Only one of 'pageNumber' and 'pageToken' can be present in a query. pageNumber The page number to retrieve, starting from 0. Only one of 'pageNumber' and 'pageToken' can be present in a query. maxPageSize The number of assets to be returned. Cannot be larger than 100. sortDirection The sort direction of the search results. sortCategory The category to sort the search results by. audioMinDurationSeconds When searching for audio, the minimum duration of the audio assets. If included, must be greater than or equal to 0. audioMaxDurationSeconds When searching for audio, the maximum duration of the audio assets. If included, must be greater than or equal to 0. audioArtist When searching for audio, the artist name of the audio assets. audioAlbum When searching for audio, the album name of the audio assets. includeTopCharts audioTypes When searching for audio, the type of the audio assets. includedInstanceTypes When searching for models, this filters that the following Instance types are included in the model. includeOnlyVerifiedCreators Whether the results should only include assets created by verified creators. minPriceCents The minimum price of the asset in cents. If included, must be greater than or equal to 0. maxPriceCents The maximum price of the asset in cents. If included, must be greater than or equal to 0. facets Additional keywords to query by. categoryPath searchView Indicates which fields will be populated in the response. musicChartType Indicates which music charts to filter from. Search Creator Store for assets.