rozod
    Preparing search index...

    Variable getUsersSearchConst Api Param

    getUsersSearch: EndpointGeneric<
        {
            cursor?: string;
            keyword: string;
            limit?: 10
            | 25
            | 50
            | 100;
            sessionId?: string;
        },
        {
            data: {
                displayName: string;
                hasVerifiedBadge: boolean;
                id: number;
                name: string;
                previousUsernames: string[];
            }[];
            nextPageCursor: string;
            previousPageCursor: string;
        },
        undefined,
    > = ...

    GET https://users.roblox.com/v1/users/search Searches for users by keyword. keyword The search keyword. sessionId limit The number of results per request. cursor The paging cursor for the previous or next page.