> For the complete documentation index, see [llms.txt](https://discordlib.js.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://discordlib.js.org/0.5.7/classes/announcements.md).

# webhookClient

This allows you to send a webhook request to a webhook url from discord. This send your announcement or message to the webhook when you start the process.

### Parameters

| Parameter | Description                     | Required |
| --------- | ------------------------------- | -------- |
| url       | webhook url                     | yes      |
| msg       | message title to send           | yes      |
| message   | message body to send to the url | yes      |

### Example

```javascript
const dl = require("discord.lib")

dl.webhookClient("webhookurl", "Title-no embeds!", "Description-no Embeds!")
```
