Variable getUsersSearchConst

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

GET https://users.roblox.com/v1/users/search

Searches for users by keyword.

The search keyword.

The number of results per request.

The paging cursor for the previous or next page.