> ## 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.

# All Quorums

> Retrieves the latest information about all quorums with pagination and metadata, including statistics.



## OpenAPI

````yaml get /eigenda/all-quorums
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/all-quorums:
    get:
      summary: All Quorums
      description: >-
        Retrieves the latest information about all quorums with pagination and
        metadata, including 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: page
          in: query
          schema:
            type: integer
            default: 1
          required: false
          description: The page number for pagination.
        - name: limit
          in: query
          schema:
            type: integer
            default: 12
          required: false
          description: The number of results to return per page.
      responses:
        '200':
          description: Successful response containing quorums data and metadata.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        quorumNumber:
                          type: integer
                          description: The unique number of the quorum.
                        strategiesCount:
                          type: integer
                          description: The count of strategies for the quorum.
                        minimumStake:
                          type: number
                          description: The minimum stake required for the quorum.
                        createdAt:
                          type: object
                          properties:
                            blockNumber:
                              type: integer
                              description: The block number when the quorum was created.
                            blockTimestamp:
                              type: string
                              format: date-time
                              description: The block timestamp of quorum creation.
                            transactionHash:
                              type: string
                              description: The transaction hash of quorum creation.
                        updatedAt:
                          type: object
                          properties:
                            blockNumber:
                              type: integer
                              description: >-
                                The block number when the quorum was last
                                updated.
                            blockTimestamp:
                              type: string
                              format: date-time
                              description: The block timestamp of the last update.
                            transactionHash:
                              type: string
                              description: The transaction hash of the last update.
                  meta:
                    type: object
                    properties:
                      total:
                        type: integer
                        description: The total number of quorums.
                      page:
                        type: integer
                        description: The current page number.
                      limit:
                        type: integer
                        description: The number of results per page.
                      totalPages:
                        type: integer
                        description: The total number of pages.
                      hasMore:
                        type: boolean
                        description: >-
                          Whether there are more results beyond the current
                          page.
                      statistics:
                        type: object
                        properties:
                          totalQuorums:
                            type: integer
                            description: The total number of quorums retrieved.
                          averageStrategiesPerQuorum:
                            type: number
                            description: The average number of strategies per quorum.
        '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

````