Variable postUsernamesUsersConst

postUsernamesUsers: EndpointGeneric<{}, {
    data: {
        displayName: string;
        hasVerifiedBadge: boolean;
        id: number;
        name: string;
        requestedUsername: string;
    }[];
}, {
    excludeBannedUsers: boolean;
    usernames: string[];
}> = ...

POST https://users.roblox.com/v1/usernames/users

Get users by usernames.

The Roblox.Users.Api.MultiGetByUsernameRequest.

This endpoint will also check previous usernames. Does not require X-CSRF-Token protection because this is essentially a get request but as a POST to avoid URI limits.