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

# Retrieve the status of instance



## OpenAPI

````yaml https://raw.githubusercontent.com/webhookx-io/webhookx/refs/heads/main/openapi-status.yml get /
openapi: 3.0.3
info:
  title: WebhookX Status API
  contact:
    name: WebhookX
    url: https://github.com/webhookx-io/webhookx
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
  version: 1.0.1
servers:
  - url: http://localhost:9602
security: []
paths:
  /:
    get:
      summary: Retrieve the status of instance
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
              example:
                uptime: 8s
                runtime:
                  go: go1.24.3
                  goroutines: 1434
                memory:
                  alloc: 3.52 MiB
                  sys: 23.14 MiB
                  heap_alloc: 3.52 MiB
                  heap_idle: 6.11 MiB
                  heap_inuse: 5.92 MiB
                  heap_objects: 21667
                  gc: 1
                database:
                  total_connections: 1
                  active_connections: 0
                inbound_requests: 0
                inbound_failed_requests: 0
                outbound_requests: 0
                outbound_processing_requests: 0
                outbound_failed_requests: 0
                queue:
                  size: 0
                  backlog_latency_secs: 0
                event:
                  pending: 0

````