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

# List endpoints

> List the org's webhook endpoints, newest first.



## OpenAPI

````yaml /schemas/operator.json get /v1/webhook_endpoints
openapi: 3.1.0
info:
  title: Omegas Operator API
  version: 0.1.0
  description: >-
    The public /v1 machine surface: cloud browser devices, tasks, live-view
    sessions, escalations, usage, webhook endpoints, and the audit trail.
    Generated from the same OpenAPI document the Rust API is checked against.
servers:
  - url: https://api.omegas.dev
    description: Production
security: []
paths:
  /v1/webhook_endpoints:
    get:
      tags:
        - Endpoints
      summary: List endpoints
      description: List the org's webhook endpoints, newest first.
      operationId: list_endpoints
      parameters:
        - name: space_id
          in: query
          description: Filter to one Space (raw uuid).
          required: false
          schema:
            type:
              - string
              - 'null'
        - name: cursor
          in: query
          required: false
          schema:
            type:
              - string
              - 'null'
        - name: limit
          in: query
          description: Page size (default 20, max 100).
          required: false
          schema:
            type:
              - integer
              - 'null'
            format: int64
      responses:
        '200':
          description: A page of endpoints (never a secret)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EndpointListResponse'
        '400':
          description: invalid cursor or space_id
        '401':
          description: invalid_api_key
        '403':
          description: insufficient_scope or product_not_entitled
        '429':
          description: rate_limited
      security:
        - bearer_operator: []
components:
  schemas:
    EndpointListResponse:
      type: object
      required:
        - data
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Endpoint'
        next_cursor:
          type:
            - string
            - 'null'
    Endpoint:
      type: object
      description: An endpoint as read back. Deliberately has NO secret field of any kind.
      required:
        - id
        - object
        - url
        - event_types
        - enabled
        - failure_count
        - created_at
        - updated_at
      properties:
        created_at:
          type: string
        description:
          type:
            - string
            - 'null'
        disabled_at:
          type:
            - string
            - 'null'
        enabled:
          type: boolean
        event_types:
          type: array
          items:
            type: string
          description: Empty = every event type.
        failure_count:
          type: integer
          format: int32
          description: Consecutive failed delivery attempts since the last success.
        id:
          type: string
          description: '`whe_<uuid>`.'
        last_error:
          type:
            - string
            - 'null'
          description: >-
            A clamped failure summary — a status code or transport class, never
            a response body.
        last_success_at:
          type:
            - string
            - 'null'
        object:
          type: string
          description: >-
            Discriminator for polymorphic SDK decoders. Always
            `"webhook_endpoint"`.
        space_id:
          type:
            - string
            - 'null'
          description: '`null` = org-wide.'
        updated_at:
          type: string
        url:
          type: string
  securitySchemes:
    bearer_operator:
      type: http
      scheme: bearer
      bearerFormat: Opaque

````