# fetchManyUsers

`function` in `seedcord` · v0.13.0

<https://docs.seedcord.org/packages/seedcord/0.13.0/functions/fetch-many-users>

Fetches multiple Discord users by IDs.

```ts
async fetchManyUsers(
    client: Client,
    userIds: string[],
    options?: FetchUserOptions
): Promise<User[]>
```

Fetches multiple Discord users by IDs.

Parameters.

- `client` `Client` — The Discord client instance
- `userIds` `string[]` — Array of Discord user IDs
- `options?` `FetchUserOptions` — Optional overrides threaded to each [`fetchUser`](/packages/seedcord/0.13.0/functions/fetch-user) call

Returns `Promise<User[]>`.
