KO
|
EN
gitlite — search
Search
#ai-agent
#python
#dsh-plugin
#mcp-server
#agentic-ai
#automation
#genpark
#llm-tools
#deepseek-harness
#dsh
#ai-agents
#claude-code
webhook
★ 19
Open GitHub ↗
Easily test webhooks and other HTTP requests
Download README (.md)
Explore Similar Repositories
postbin
:
PostBin, a simple web service for testing WebHooks (HTTP POST requests).
Newman-to-Slack
:
Runs a Newman test script and outputs the summary to a Slack webhook
stripe-mock-webhooks
:
Node.js module for testing Stripe Webhooks, no internet required
dropbox_hook
:
A tool for testing your Dropbox webhook endpoints.
ngrok-rspec
:
Ngrok-rspec is a ruby gem for testing webhooks with rspec and capybara through ngrok
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
webhook
?
Download (.md)
# webhook [](https://github.com/gabfl/webhook/actions) [](https://codecov.io/gh/gabfl/webhook) [](https://raw.githubusercontent.com/gabfl/webhook/main/LICENSE) Webhook is an open source project available at [https://webhook.link](https://webhook.link). It allows you to easily test webhooks and other HTTP requests and log their attributes and payloads. ## Usage example This projects generates random ephemeral routes like `/3989c985-0659-4c2d-b38f-9d83d74fe0bb`. You can send any HTTP request to the route, for example: ```bash curl -X POST https://webhook.link/3989c985-0659-4c2d-b38f-9d83d74fe0bb \ -H "Content-Type: application/json" \ -H "X-MyHeader: 123" \ -d '{"hello": "world", "is_true": true}' ``` And the result will be available on `/inspect/3989c985-0659-4c2d-b38f-9d83d74fe0bb`:  ## Installation ```bash $ cd webhook/ $ pip3 install -r requirements.txt $ python3 -m src ``` ## Try it out in docker * Build the image: `docker build webhook:latest .` * Run the image: `docker run -it --rm -p 5000:5000 webhook:latest` * [Open in browser](http://localhost:5000)