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

# System Status

> Returns system status including node connectivity, uptime, stream lengths, and state engine summary.



## OpenAPI

````yaml GET /v1/status
openapi: 3.1.0
info:
  title: PolyNode API
  description: >-
    Real-time Polymarket data API with decoded mempool settlements, OHLCV
    candles, and full Polygon JSON-RPC proxy.
  contact:
    name: PolyNode
    url: https://polynode.dev
  license:
    name: ''
  version: 2.0.0
servers:
  - url: https://api.polynode.dev
    description: Production
security:
  - api_key: []
paths:
  /v1/status:
    get:
      tags:
        - System
      summary: System status
      description: >-
        Returns system status including node connectivity, uptime, stream
        lengths, and state engine summary.
      operationId: get_status
      responses:
        '200':
          description: System status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StatusResponse'
        '401':
          description: Missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - api_key: []
components:
  schemas:
    StatusResponse:
      type: object
      required:
        - node_connected
        - uptime_seconds
        - stream_length
        - events_stream_length
        - pending_txs
        - ws_subscribers
        - firehose_connections
        - redis_memory
        - state
      properties:
        events_stream_length:
          type: integer
          minimum: 0
        firehose_connections:
          type: integer
          format: int32
          minimum: 0
        node_connected:
          type: boolean
        pending_txs:
          type: integer
          minimum: 0
        redis_memory:
          type: string
        state:
          $ref: '#/components/schemas/StateSummary'
        stream_length:
          type: integer
          minimum: 0
        uptime_seconds:
          type: integer
          format: int64
          minimum: 0
        ws_subscribers:
          type: integer
          minimum: 0
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
    StateSummary:
      type: object
      required:
        - market_count
        - wallet_count
        - metadata_count
        - events_buffered
        - events_processed
        - latest_block
      properties:
        events_buffered:
          type: integer
          minimum: 0
        events_processed:
          type: integer
          format: int64
          minimum: 0
        latest_block:
          type: integer
          format: int64
          minimum: 0
        market_count:
          type: integer
          minimum: 0
        metadata_count:
          type: integer
          minimum: 0
        wallet_count:
          type: integer
          minimum: 0
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: x-api-key

````