> ## 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.

# Get Webhook

> Returns the details of a single webhook. The `secret` is omitted.



## OpenAPI

````yaml latest.yml GET /agents/webhooks/{webhook_id}
openapi: 3.0.1
info:
  title: Cartesia API
  version: 0.0.1
servers:
  - url: https://api.cartesia.ai
    description: Production
security: []
paths:
  /agents/webhooks/{webhook_id}:
    get:
      tags:
        - Webhooks
      summary: Get Webhook
      description: Returns the details of a single webhook. The `secret` is omitted.
      operationId: webhooks_get
      parameters:
        - $ref: '#/components/parameters/CartesiaVersionHeader'
        - name: webhook_id
          in: path
          description: The ID of the webhook.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentWebhookSummary'
        '404':
          description: Webhook not found.
      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:
    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).

````