# Get webhooks directly on your localhost

Too many tools exist to get webhooks from a 3rd party app. Here are some fantastic tools that have become essential in my daily.

1. [webhook.site](http://webhook.site)
    
    This is a really handy tool to explore the body of the received webhooks. You can forward webhooks to your [localhost](http://localhost) using
    
    ```plaintext
    npm install -g @webhooksite/cli
    ```
    
    You can even generate a temporary email address for testing SMTP or simply having some fun!
    
2. [ngrok.com](https://ngrok.com/)
    
    This is one of my favourite platforms. Simplifying the process of exposing my [localhost](http://localhost), it offers a generous free plan equipped with SSL and random domains.
    
    ```plaintext
    npm i ngrok
    ```
