# webhooksite **Repository Path**: mirrors_rubenv/webhooksite ## Basic Information - **Project Name**: webhooksite - **Description**: Go library for webhook.site - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2026-02-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # webhooksite > Go library for [webhook.site](https://webhook.site/) [![Build Status](https://github.com/rubenv/webhooksite/workflows/Test/badge.svg)](https://github.com/rubenv/webhooksite/actions) [![GoDoc](https://godoc.org/github.com/rubenv/webhooksite?status.png)](https://godoc.org/github.com/rubenv/webhooksite) Simple library to test webhook calls, ideal for testing callbacks in a CI server that doesn't accept calls from the outside world. Features: * Create tokens, inspect results * Can be configured to use a self-hosted webhook.site instance * Zero dependencies! ## Usage ```go // Create a client c := webhooksite.New() // Fetch a token token, err := c.CreateToken() // Do a webhook call // curl {{ token.URL }} // Fetch the requests reqs, err := c.GetRequests(token.UUID) ``` ## License This library is distributed under the [MIT](LICENSE) license.