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

# List Destinations



## OpenAPI

````yaml GET /v1/webhooks/destinations
openapi: 3.0.3
info:
  title: Dome Platform API
  description: Connect and REST APIs for the Dome agent governance platform.
  version: 2.0.0
servers:
  - url: https://api.domesystems.ai
    description: Production
security: []
tags:
  - name: Agents
  - name: Authorization
  - name: Guards
  - name: Tools
  - name: Tool Catalog
  - name: Models
  - name: Model Pools
  - name: Quotas
  - name: Gateways
  - name: Webhooks
  - name: Audit
  - name: Workspaces
  - name: Access Control
  - name: Tenants
  - name: Platform Keys
  - name: Enrollment
  - name: Platform
  - name: Identity
paths:
  /v1/webhooks/destinations:
    get:
      tags:
        - Webhooks
      operationId: EventingService_ListDestinations
      parameters:
        - name: workspace_id
          in: query
          schema:
            type: string
        - name: include_deleted
          in: query
          schema:
            type: boolean
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListDestinationsResponse'
components:
  schemas:
    ListDestinationsResponse:
      type: object
      properties:
        destinations:
          type: array
          items:
            $ref: '#/components/schemas/Destination'
    Destination:
      type: object
      properties:
        id:
          type: string
        workspace_id:
          type: string
        tenant_id:
          type: string
        name:
          type: string
        destination_type:
          type: string
        endpoint_url:
          type: string
        active:
          type: boolean
        health_status:
          type: string
        circuit_state:
          type: string
        rate_limit_per_second:
          type: integer
          format: int32
        concurrency_limit:
          type: integer
          format: int32
        request_timeout_seconds:
          type: integer
          format: int32
        max_body_bytes:
          type: integer
          format: int32
        signing_key_id:
          type: string
        last_success_at:
          type: string
          format: date-time
        last_failure_at:
          type: string
          format: date-time
        created_by_user_id:
          type: string
        updated_by_user_id:
          type: string
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        headers:
          type: array
          items:
            $ref: '#/components/schemas/HeaderSpec'
          description: |-
            Custom headers sent with every delivery (secret values blanked — see
             HeaderSpec).
        provider_key:
          type: string
          description: |-
            Provider destinations: the registry key plus its non-secret settings
             (site/region/dataset/...). Both empty for destination_type="webhook".
        provider_settings:
          type: object
          additionalProperties:
            type: string
        content_format:
          type: string
          description: |-
            Body shape for custom destinations: "object" (default) or "array"
             (single-element JSON array wrap, for array-only intakes).
    HeaderSpec:
      type: object
      properties:
        name:
          type: string
        source:
          type: string
        value:
          type: string
      description: >-
        Destination is the customer-visible view of an eventing destination. It
        never
         exposes the signing secret or its Vault reference — only safe display metadata
         and worker-enforced health/circuit state.
         HeaderSpec is one custom header on a webhook destination. For
         source="literal" the value is stored and echoed on reads. For
         source="secret" the value is accepted on WRITE ONLY (it is stored in Vault,
         never in a relational column) and is NEVER echoed — reads return value="".

````