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

# Stripe Webhook

> Handle Stripe webhook events.

Verifies the webhook signature to ensure the event came from Stripe,
then routes to the appropriate handler based on event type.



## OpenAPI

````yaml /openapi.json post /api/v1/webhooks/stripe
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/webhooks/stripe:
    post:
      tags:
        - Webhooks
      summary: Stripe Webhook
      description: |-
        Handle Stripe webhook events.

        Verifies the webhook signature to ensure the event came from Stripe,
        then routes to the appropriate handler based on event type.
      operationId: stripe_webhook_api_v1_webhooks_stripe_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````