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

# Validators

Active validator set with stake, name, and signer address.

## Example

```bash theme={null}
curl https://hyper.polynode.dev/exchange/validators
```

```json theme={null}
[
  {
    "signer": "0xdf35aee8ef5658686142acd1e5ab5dbcdf8c51e8",
    "name": "Hyper Foundation 4",
    "blocks_proposed": 0,
    "last_seen": 1775702972409
  }
]
```


## OpenAPI

````yaml GET /exchange/validators
openapi: 3.1.0
info:
  title: hypernode API
  description: >-
    Real-time HyperLiquid L1 streaming and REST API for market data, trading,
    and account management.
  contact:
    name: hypernode
    url: https://hyper.polynode.dev
  version: 1.0.0
servers:
  - url: https://hyper.polynode.dev
    description: Production
security: []
paths:
  /exchange/validators:
    get:
      tags:
        - Vaults & Governance
      summary: Active validators
      operationId: get_validators
      parameters:
        - name: network
          in: query
          required: false
          schema:
            type: string
            default: mainnet
      responses:
        '200':
          description: Validator summaries

````