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

> Retrieves detailed information about a specific quorum, including strategies, stake, and member counts.



## OpenAPI

````yaml get /eigenda/quorum-info
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-info:
    get:
      summary: Quorum Info
      description: >-
        Retrieves detailed information about a specific quorum, including
        strategies, stake, and member counts.
      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 details for.
      responses:
        '200':
          description: Successful response containing quorum details.
          content:
            application/json:
              schema:
                type: object
                properties:
                  quorumNumber:
                    type: integer
                    description: The unique number of the quorum.
                  strategies:
                    type: array
                    items:
                      type: string
                    description: The strategies associated with the quorum.
                  minimumStake:
                    type: number
                    description: The minimum stake required for the quorum.
                  createdAt:
                    type: string
                    format: date-time
                    description: The timestamp when the quorum was created.
                  updatedAt:
                    type: string
                    format: date-time
                    description: The timestamp of the last update to the quorum.
                  registeredMembersCount:
                    type: integer
                    description: The total number of registered members in the quorum.
                  activeMembersCount:
                    type: integer
                    description: The total number of active members in the 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

````