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

# Polar Webhook



## OpenAPI

````yaml https://api.crosmos.dev/openapi.json post /webhooks/polar
openapi: 3.1.0
info:
  title: Crosmos Memory API
  description: Agent memory system with hybrid retrieval
  version: 0.1.0
servers: []
security: []
paths:
  /webhooks/polar:
    post:
      tags:
        - webhooks
      summary: Polar Webhook
      operationId: polar_webhook_webhooks_polar_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookAck'
components:
  schemas:
    WebhookAck:
      properties:
        received:
          type: boolean
          title: Received
          default: true
      type: object
      title: WebhookAck

````