A Flutter package to send event data to test Webhook with any service, such as HooksEasy, Webhook.site or Svix.
- 🥷🏼 Create webhook APIs without a server
- 🚪 Create infinite Webhook APIs
- 💥 Forward data to other Webhook APIs, repeatedly
- 🖥️ Forward data to your localhost, repeatedly
- Create New Webhook API
- Go to https://hookseasy.com/, https://webhook.site/ or https://www.svix.com/
- Create new API
- Copy your url
- Create new Webhook object
- Setup your url
const url = '';
final webhook = HooksEasy(url: url);- Send your data
final response = await webhook.send(
data: {'message': 'Hello, world!'},
);This project is licensed under the BSD 3-Clause License.
The hooks_easy package is an intermediary tool for sending data to any webhook service via their API.
- We are not responsible for the data you send or any consequences arising from its use.
- Use of this package is at your own risk and compliance with laws, regulations, and service provider terms is your responsibility.
- The authors are not liable for any damages caused by using this package.
By using hooks_easy, you agree to these terms.