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

# Quorum Operators

> Retrieves a paginated list of operators in a specified quorum, along with metadata and additional statistics.



## OpenAPI

````yaml get /eigenda/quorum-operators
openapi: 3.0.1
info:
  title: OpenAPI Rescan Explorer
  description: Api reference for the Rescan Explorer
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.blockflow.network/rest
security: []
paths:
  /eigenda/quorum-operators:
    get:
      summary: Quorum Operators
      description: >-
        Retrieves a paginated list of operators in a specified quorum, along
        with metadata and additional statistics.
      parameters:
        - name: network
          in: query
          schema:
            type: string
            enum:
              - ethereum
              - holesky
            default: holesky
          required: true
          description: Select the network you want to track.
        - name: quorumNumber
          in: query
          schema:
            type: integer
          required: true
          description: The unique number of the quorum to retrieve operators for.
        - name: active
          in: query
          schema:
            type: string
            enum:
              - 'true'
              - 'false'
            default: 'false'
          required: false
          description: >-
            Filter to include only active operators (stake > 0) if set to
            `true`.
        - name: page
          in: query
          required: false
          schema:
            type: integer
            default: 1
            minimum: 1
          description: The page number for pagination.
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 12
            minimum: 1
          description: The number of operators per page.
      responses:
        '200':
          description: Successful response containing operators and metadata.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        operatorId:
                          type: string
                          description: The unique identifier of the operator.
                        stake:
                          type: string
                          description: The stake amount of the operator.
                    description: A list of operators for the requested quorum and page.
                  meta:
                    type: object
                    properties:
                      total:
                        type: integer
                        description: The total number of operators for the quorum.
                      page:
                        type: integer
                        description: The current page number.
                      limit:
                        type: integer
                        description: The number of operators per page.
                      totalPages:
                        type: integer
                        description: The total number of pages.
                      hasMore:
                        type: boolean
                        description: Indicates if there are more pages to retrieve.
                      statistics:
                        type: object
                        properties:
                          totalOperators:
                            type: integer
                            description: The total number of operators in the quorum.
                          currentPageActiveOperators:
                            type: integer
                            description: >-
                              The number of active operators on the current
                              page.
                          currentPageTotalStake:
                            type: number
                            description: The total stake of operators on the current page.
                          currentPageAverageStake:
                            type: number
                            description: >-
                              The average stake of operators on the current
                              page.
                        description: Additional statistics for the current page.
                    description: Metadata about the paginated response.
        '400':
          $ref: '#/components/responses/400'
        '500':
          $ref: '#/components/responses/500'
components:
  responses:
    '400':
      description: >-
        The server cannot or will not process the request due to something that
        is perceived to be a client error (e.g., malformed request syntax,
        invalid request message framing, or deceptive request routing).
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: object
                properties:
                  code:
                    type: string
                    enum:
                      - bad_request
                    description: A short code indicating the error code returned.
                    example: bad_request
                  message:
                    type: string
                    description: A human readable explanation of what went wrong.
                    example: The requested resource was not found.
                  doc_url:
                    type: string
                    description: >-
                      A link to our documentation with more details about this
                      error code
                    example: >-
                      https://docs.rescan.dev.com/api-reference/errors#bad_request
                required:
                  - code
                  - message
            required:
              - error
    '500':
      description: The server has encountered a situation it does not know how to handle.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: object
                properties:
                  code:
                    type: string
                    enum:
                      - internal_server_error
                    description: A short code indicating the error code returned.
                    example: internal_server_error
                  message:
                    type: string
                    description: A human readable explanation of what went wrong.
                    example: The requested resource was not found.
                  doc_url:
                    type: string
                    description: >-
                      A link to our documentation with more details about this
                      error code
                    example: >-
                      https://docs.rescan.dev.com/api-reference/errors#internal_server_error
                required:
                  - code
                  - message
            required:
              - error

````