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

> Retrieves a paginated list of operator activities for a specified quorum, filtered by optional parameters such as `operatorId` and `action`. The response also includes metadata and a summary of actions.



## OpenAPI

````yaml get /eigenda/quorum-activity
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-activity:
    get:
      summary: Quorum Activities
      description: >-
        Retrieves a paginated list of operator activities for a specified
        quorum, filtered by optional parameters such as `operatorId` and
        `action`. The response also includes metadata and a summary of actions.
      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
          required: true
          schema:
            type: string
          description: The unique quorum number for which activities are retrieved.
        - name: operator
          in: query
          required: false
          schema:
            type: string
          description: The address of a specific operator to filter activities.
        - name: action
          in: query
          required: false
          schema:
            type: string
            enum:
              - Registered
              - Deregistered
              - StakeUpdated
              - Ejected
            default: Registered
          description: A specific action type to filter activities.
        - 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: 20
            minimum: 1
          description: The number of activities per page.
      responses:
        '200':
          description: >-
            Successful response containing operator activities, metadata, and a
            summary.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        operatorId:
                          type: string
                          description: The unique ID of the operator.
                        quorumNumber:
                          type: string
                          description: The unique number of the quorum.
                        action:
                          type: string
                          description: The type of action performed by the operator.
                        stake:
                          type: string
                          description: The stake of operator in the quorum.
                        batchId:
                          type: string
                          description: The batch ID associated with the action.
                        transactionHash:
                          type: string
                          description: The transaction hash for the activity.
                        blockTimestamp:
                          type: string
                          description: The timestamp of the block when the action occurred.
                        blockNumber:
                          type: integer
                          description: The block number associated with the action.
                    description: A list of operator activities for the given quorum.
                  meta:
                    type: object
                    properties:
                      total:
                        type: integer
                        description: The total number of activities for the query.
                      page:
                        type: integer
                        description: The current page number.
                      limit:
                        type: integer
                        description: The number of activities per page.
                      totalPages:
                        type: integer
                        description: The total number of pages for the query.
                      hasMore:
                        type: boolean
                        description: Indicates if more pages are available.
                    description: Metadata about the paginated response.
                  summary:
                    type: object
                    properties:
                      actionCounts:
                        type: object
                        additionalProperties:
                          type: integer
                        description: A summary of action types and their respective counts.
                      uniqueOperators:
                        type: integer
                        description: >-
                          The number of unique operators involved in the
                          activities.
                    description: Summary information about the queried activities.
        '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

````