# Webhooks > The inbound webhooks Flax receives — GitHub events for the write-back/git flow and Stripe events for billing *[View this page in the Flax docs](https://flax-analytics.com/docs/developers/webhooks)* Flax **receives** inbound webhooks from two external systems. These are endpoints your integrations post to, not outbound notifications Flax sends. This page is for admins and developers wiring up the integrations. ## GitHub ```http POST /api/webhooks/github ``` Delivers repository events from the [GitHub App](/docs/developers/github-app) that drive the git flow: keeping the connected [dbt project](/docs/connections/dbt-projects) in sync and tracking the pull requests opened by semantic [write-back](/docs/modeling/write-back). It is configured automatically as part of installing the GitHub App. ## Stripe ```http POST /api/billing/webhook ``` Receives billing events from Stripe to keep subscription and usage state current. See [Billing and usage](/docs/administration/billing-and-usage). > [!NOTE] > Both endpoints verify the signature of each delivery, so only events from the configured GitHub App and Stripe account are accepted. ## Related - [GitHub App](/docs/developers/github-app) - [Semantic write-back](/docs/modeling/write-back) - [Billing and usage](/docs/administration/billing-and-usage)