rozod
    Preparing search index...

    Variable getGroupsSearchConst Api Param

    getGroupsSearch: EndpointGeneric<
        {
            cursor?: string;
            keyword: string;
            limit?: 10
            | 25
            | 50
            | 100;
            prioritizeExactMatch?: boolean;
        },
        {
            data: {
                created: string;
                description: string;
                hasVerifiedBadge: boolean;
                id: number;
                memberCount: number;
                name: string;
                previousName: string;
                publicEntryAllowed: boolean;
                updated: string;
            }[];
            keyword: string;
            nextPageCursor: string;
            previousPageCursor: string;
        },
        undefined,
    > = ...

    GET https://groups.roblox.com/v1/groups/search Search for groups by keyword. keyword The keyword or phrase to use as the search parameter. prioritizeExactMatch Whether or not to prioritize the exact match for the keyword (optional, defaults to false). limit The number of results per request. cursor The paging cursor for the previous or next page.