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

# List Webhooks

> List the webhooks in your organization. The `secret` is omitted.



## OpenAPI

````yaml latest.yml GET /agents/webhooks
openapi: 3.0.1
info:
  title: Cartesia API
  version: 0.0.1
servers:
  - url: https://api.cartesia.ai
    description: Production
security: []
paths:
  /agents/webhooks:
    get:
      tags:
        - Webhooks
      summary: List Webhooks
      description: List the webhooks in your organization. The `secret` is omitted.
      operationId: webhooks_list
      parameters:
        - $ref: '#/components/parameters/CartesiaVersionHeader'
        - name: starting_after
          in: query
          description: >-
            A cursor for pagination. Pass the ID of the last webhook from the
            previous page to fetch the next page.
          required: false
          schema:
            type: string
        - name: ending_before
          in: query
          description: >-
            A cursor for pagination. Pass the ID of the first webhook from the
            previous page to fetch the previous page.
          required: false
          schema:
            type: string
        - name: limit
          in: query
          description: >-
            The number of webhooks to return per page, ranging between 1 and
            100. Defaults to 10.
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 10
      responses:
        '200':
          description: A paginated list of webhooks.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListWebhooksResponse'
      security:
        - APIKeyAuth: []
components:
  parameters:
    CartesiaVersionHeader:
      name: Cartesia-Version
      in: header
      description: API version header.
      required: true
      schema:
        type: string
        format: date
        example: '2026-03-01'
        enum:
          - '2026-03-01'
  schemas:
    ListWebhooksResponse:
      title: ListWebhooksResponse
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/AgentWebhookSummary'
          description: The paginated list of webhooks.
        has_more:
          type: boolean
          description: Whether more results are available after this page.
        next_page:
          type: string
          nullable: true
          description: >-
            An ID that can be passed as `starting_after` or `ending_before` to
            get the next page.
      required:
        - data
        - has_more
    AgentWebhookSummary:
      title: AgentWebhookSummary
      type: object
      description: A webhook without its secret, as returned by list and get.
      properties:
        id:
          type: string
          description: The ID of the webhook.
        url:
          type: string
          format: uri
          description: The HTTPS endpoint call events are delivered to.
        display_name:
          type: string
          nullable: true
          description: The webhook's display name, or `null` if unset.
        created_at:
          type: string
          format: date-time
          description: When the webhook was created.
        updated_at:
          type: string
          format: date-time
          description: When the webhook was last updated.
      required:
        - id
        - url
        - created_at
        - updated_at
  securitySchemes:
    APIKeyAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: >-
        Cartesia API key (`sk_car_...`). Get one at
        [play.cartesia.ai/keys](https://play.cartesia.ai/keys).

````