> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mythex.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Handle webhooks in your backend

> Scaffold HTTP webhook endpoints in your Mythex project for Stripe, GitHub, or other providers.

# Handle webhooks in your backend

Mythex does not provide a hosted “webhooks product.” You add an HTTP endpoint in **your** backend (often via a Dockerfile API) and point the provider at your **published** URL.

## Starter prompt

```text theme={null}
Add a POST /webhooks/[provider] endpoint that verifies signatures using secret [ENV_NAME].
Log the event type and return 200 quickly. Document the public URL path after publish.
```

## Tips

* Webhooks need a **public** URL — publish first (or use a tunnel only if you know what you are doing)
* Store signing secrets in [Secrets](/features/env-and-secrets)
* See [REST API backend](/recipes/rest-api-backend) and [API backends](/guides/api-backends)

## Related

* [Accept payments with Stripe](/recipes/add-stripe-payments)
* [How to publish](/publish/how-to-publish)
