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

# Get endpoint

> Fetch one endpoint. Carries no secret — a lost signing key cannot be recovered here.



## OpenAPI

````yaml /schemas/operator.json get /v1/webhook_endpoints/{id}
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/{id}:
    get:
      tags:
        - Endpoints
      summary: Get endpoint
      description: >-
        Fetch one endpoint. Carries no secret — a lost signing key cannot be
        recovered here.
      operationId: get_endpoint
      parameters:
        - name: id
          in: path
          description: Endpoint id (`whe_<uuid>`)
          required: true
          schema:
            type: string
      responses:
        '200':
          description: The endpoint
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Endpoint'
        '401':
          description: invalid_api_key
        '403':
          description: insufficient_scope or product_not_entitled
        '404':
          description: webhook_endpoint_not_found
        '429':
          description: rate_limited
      security:
        - bearer_operator: []
components:
  schemas:
    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

````