{"id":46186901,"url":"https://github.com/figstra/usewebhook-cli","last_synced_at":"2026-03-02T23:01:32.885Z","repository":{"id":302489106,"uuid":"929189234","full_name":"figstra/usewebhook-cli","owner":"figstra","description":"Test webhooks without a server","archived":false,"fork":false,"pushed_at":"2025-02-08T01:18:08.000Z","size":8,"stargazers_count":7,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-02T17:33:20.808Z","etag":null,"topics":["webhook-receiver","webhooks","webhooks-catcher"],"latest_commit_sha":null,"homepage":"https://usewebhook.com","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/figstra.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-02-08T01:17:26.000Z","updated_at":"2025-02-10T18:10:47.000Z","dependencies_parsed_at":"2025-07-02T17:35:08.060Z","dependency_job_id":"39f6f763-3d77-4f1f-a63f-4a9ecf141562","html_url":"https://github.com/figstra/usewebhook-cli","commit_stats":null,"previous_names":["figstra/usewebhook-cli"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/figstra/usewebhook-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/figstra%2Fusewebhook-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/figstra%2Fusewebhook-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/figstra%2Fusewebhook-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/figstra%2Fusewebhook-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/figstra","download_url":"https://codeload.github.com/figstra/usewebhook-cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/figstra%2Fusewebhook-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30024334,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-02T22:30:10.381Z","status":"ssl_error","status_checked_at":"2026-03-02T22:23:34.650Z","response_time":60,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["webhook-receiver","webhooks","webhooks-catcher"],"created_at":"2026-03-02T23:01:32.369Z","updated_at":"2026-03-02T23:01:32.877Z","avatar_url":"https://github.com/figstra.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# UseWebhook CLI\n\n[UseWebhook](https://usewebhook.com/) is a free tool to capture webhooks from your browser.\n\n- ⚡️ Test webhooks without a server\n- 🔍 Inspect and diff incoming requests\n- 👨‍💻 Forward to localhost, or replay from history\n- ✅ Debug webhooks from Stripe, Paddle, Slack, or anywhere else\n\nNo sign up required. Just send HTTP requests to your webhook URL.\n\n## Installation\n\nThe easiest way to install is using the automated script:\n\n```\ncurl -fsSL https://usewebhook.com/install.sh | bash\n```\n\nIt will detect your OS and architecture, download the corresponding executable, and add it to your PATH.\n\nAlternatively, you can download the binary for your operating system from the [releases page](https://github.com/figstra/usewebhook-cli/releases), or [build from source](#build-from-source) if you'd like.\n\n## Usage\n\nCreate a new webhook and start listening:\n\n```bash\n$ usewebhook\n\n\u003e Dashboard: https://usewebhook.com/?id=123\n\u003e Webhook URL: https://usewebhook.com/123\n```\n\nListen for requests to a specific webhook:\n\n```bash\n$ usewebhook \u003cwebhook-URL\u003e\n```\n\nForward incoming requests to localhost:\n\n```bash\n$ usewebhook \u003cwebhook-URL\u003e --forward-to http://localhost:8080/your-endpoint\n```\n\nReplay a specific request from the webhook's history:\n\n```bash\n$ usewebhook \u003cwebhook-URL\u003e --request-id \u003crequest-ID\u003e -f http://localhost:8080/your-endpoint\n```\n\n\n## Build from source\n\n1. Ensure you have Go installed on your system.\n2. Clone the repository:\n   ```\n   git clone https://github.com/figstra/usewebhook-cli\n   ```\n3. Navigate to the project directory:\n   ```\n   cd usewebhook-cli\n   ```\n4. Build the binary:\n   ```\n   go build -o usewebhook\n   ```\n5. Move the binary to your PATH:\n   ```\n   sudo mv ./usewebhook /usr/local/bin/\n   ```\n\n\n## Contributing\n\nContributions are welcome! In case you want to add a feature, please create a new issue and briefly explain what the feature would consist of.\n\nSimply follow the next steps:\n\n- Fork the project.\n- Create a new branch.\n- Make your changes and write tests when practical.\n- Commit your changes to the new branch.\n- Send a pull request, it will be reviewed shortly.\n\n## Change log\n\n- **1.0.2:** Update dependencies\n- **1.0.1:** Update dependencies\n- **1.0.0:** Release v1\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffigstra%2Fusewebhook-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffigstra%2Fusewebhook-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffigstra%2Fusewebhook-cli/lists"}