> ## Documentation Index
> Fetch the complete documentation index at: https://chainstack-docs-polygon-flatcalltracer-getproof.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# bor_getCurrentValidators | Polygon

> Polygon API method bor_getCurrentValidators returns the current validator set seen by the Bor consensus engine. On Polygon via Chainstack.

Polygon API method `bor_getCurrentValidators` returns the current validator set as seen by the Bor consensus engine for the active span. This method takes no parameters.

## Parameters

This method takes no parameters.

## Response

* `result` — an array of validator objects:
  * `ID` — the validator ID.
  * `signer` — the validator's signer address.
  * `power` — the validator's voting power.
  * `accum` — the validator's proposer priority (accumulator) used for proposer selection.

```json theme={"system"}
{ "jsonrpc": "2.0", "id": 1, "result": [{ "ID": 0, "signer": "0x0e94b9b3fabd95338b8b23c36caae1d640e1339f", "power": 69637778, "accum": 0 }] }
```

## Use case

`bor_getCurrentValidators` is used by staking dashboards and explorers to display the active validator set and each validator's voting power on Polygon.


## OpenAPI

````yaml openapi/polygon_node_api/bor/bor_getCurrentValidators.json POST /a9bca2f0f84b54086ceebe590316fff3
openapi: 3.0.0
info:
  title: bor_getCurrentValidators example
  version: 1.0.0
  description: Get the current validator set as seen by the Bor consensus engine.
servers:
  - url: https://nd-828-700-214.p2pify.com
security: []
paths:
  /a9bca2f0f84b54086ceebe590316fff3:
    post:
      tags:
        - Ethereum Operations
      summary: bor_getCurrentValidators
      operationId: bor_getCurrentValidators
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - jsonrpc
                - method
                - id
                - params
              properties:
                jsonrpc:
                  type: string
                  default: '2.0'
                method:
                  type: string
                  default: bor_getCurrentValidators
                id:
                  type: integer
                  default: 1
                params:
                  type: array
                  default: []
      responses:
        '200':
          description: Result
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                  id:
                    type: integer
                  result:
                    type: array
                    items:
                      type: object
                      properties:
                        ID:
                          type: integer
                        signer:
                          type: string
                        power:
                          type: integer
                        accum:
                          type: integer

````