> For the complete documentation index, see [llms.txt](https://bmsvieira.gitbook.io/nova-irc/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://bmsvieira.gitbook.io/nova-irc/event-listeners/kick.md).

# kick

The `kick` event is triggered whenever a user is kicked from a channel.

```javascript
bot.on('kick', (data) => {
    // Your Code here
});
```

#### Parameters

* **data.kicker** *(string)* – The user who kicked the other user from the channel.
* **data.host** *(string)* – The host of the kicker (if available).
* **data.channelKick** *(string)* – The channel from which the user was kicked.
* **data.kickedUser** *(string)* – The user who was kicked from the channel.
* **data.reason** *(string)* – The reason for the kick (if provided).
* **data.raw** *(string)* – The raw message data from the server.
