# Transform and forward webhooks to Discord **POST /webhooks/{id}/{token}/{provider}** Receives webhooks from various providers (Doppler, etc.) and transforms them into formatted Discord embeds before forwarding to your Discord channel. Similar to skyhookapi.com - acts as a webhook transformation proxy. **Supported Providers:** - `doppler` - Doppler config change webhooks ([docs](https://docs.doppler.com/docs/webhooks)) **Usage:** 1. Get your Discord webhook URL: `https://discord.com/api/webhooks/ID/TOKEN` 2. Configure your provider to send webhooks to: `https://api.4mina.app/webhooks/ID/TOKEN/provider`. - You can simply paste your Discord webhook URL into the transformer UI at ([webhooks](https://api.4mina.app/webhooks)) to get the correct URL. **Example:** ``` Doppler webhook URL: https://api.4mina.app/webhooks/1234567890/abcdef.../doppler ``` ## Servers - Production: https://api.4mina.app (Production) ## Parameters ### Path parameters - **id** (string) Discord webhook ID - **token** (string) Discord webhook token - **provider** (string) Webhook provider name. If you need more providers: - Contact support to request new integrations. ### Body: application/json (object) Provider-specific webhook payload (JSON) object ## Responses ### 200 Webhook received and processed #### Body: application/json (object) - **success** (boolean) - **message** (string) ### 400 Bad request - missing or invalid parameters #### Body: application/json (object) - **success** (boolean) - **error** (object) - **meta** (object) ### 401 Unauthorized - invalid or missing API key #### Body: application/json (object) - **success** (boolean) - **error** (object) - **meta** (object) [Powered by Bump.sh](https://bump.sh)