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

# Track Activities

> Retrieve a list of activities with optional filters and pagination



## OpenAPI

````yaml get /eigenlayer/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:
  /eigenlayer/activity:
    get:
      summary: Track Activities
      description: Retrieve a list of activities with optional filters and pagination
      parameters:
        - name: page
          in: query
          description: Page number for pagination
          required: false
          schema:
            type: integer
            default: 1
        - name: limit
          in: query
          description: Number of activities per page
          required: false
          schema:
            type: integer
            default: 12
        - name: action
          in: query
          description: Filter activities by action
          required: false
          schema:
            type: string
            enum:
              - AVS_METADATA_URI_UPDATED
              - AVS_REGISTER_OPERATOR
              - AVS_DEREGISTER_OPERATOR
              - MINIMUM_WITHDRAWAL_DELAY_BLOCKS_UPDATED_GLOBAL
              - OPERATOR_DETAILS_UPDATED
              - OPERATOR_METADATA_URI_UPDATED
              - OPERATOR_REGISTERED
              - OPERATOR_SHARES_DECREASED
              - OPERATOR_SHARES_INCREASED
              - STAKER_DELEGATED
              - STAKER_UNDELEGATED
              - MINIMUM_WITHDRAWAL_DELAY_BLOCKS_UPDATED_STRATEGY
              - WITHDRAWAL_COMPLETED
              - WITHDRAWAL_MIGRATED
              - WITHDRAWAL_QUEUED
              - POD_SHARES_UPDATED
              - POD_DEPLOYED
              - REWARD_ACTIVATION_DELAY_UPDATED
              - AVS_REWARD_SUBMISSION
              - CLAIMER_UPDATED
              - DISTRIBUTION_ROOT_DISABLED
              - DISTRIBUTION_ROOT_SUBMITTED
              - GLOBAL_COMMISSION_BIPS_UPDATED
              - REWARDS_CLAIMED
              - REWARD_SUBMITTER_FOR_ALL_UPDATED
              - REWARD_SUBMISSION_FOR_ALL
              - REWARD_SUBMISSION_FOR_EARNER
              - REWARDS_UPDATER_UPDATED
              - SHARES_DEPOSITED_IN_STRATEGY
              - STRATEGY_WHITELISTING
              - STRATEGY_WHITELISTER_CHANGED
              - UPDATE_THIRD_PARTY_TRANSFERS_FORBIDDEN
            default: ''
        - name: operator
          in: query
          description: Filter activities by operator
          required: false
          schema:
            type: string
        - name: staker
          in: query
          description: Filter activities by staker
          required: false
          schema:
            type: string
        - name: strategy
          in: query
          description: Filter activities by strategy
          required: false
          schema:
            type: string
        - name: token
          in: query
          description: Filter activities by token
          required: false
          schema:
            type: string
        - name: avs
          in: query
          description: Filter activities by AVS
          required: false
          schema:
            type: string
        - name: pod
          in: query
          description: Filter activities by pod
          required: false
          schema:
            type: string
      responses:
        '200':
          description: List of activities with pagination and filters applied
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        action:
                          type: string
                        operator:
                          type: string
                        staker:
                          type: string
                        strategy:
                          type: string
                        token:
                          type: string
                        avs:
                          type: string
                        pod:
                          type: string
                        data:
                          type: object
                        metadata:
                          type: object
                        timestamp:
                          type: string
                  meta:
                    type: object
                    properties:
                      total:
                        type: integer
                      page:
                        type: integer
                      limit:
                        type: integer
                      totalPages:
                        type: integer
                      hasMore:
                        type: boolean
                      statistics:
                        type: object
                        properties:
                          totalActivities:
                            type: integer
                          uniqueActions:
                            type: integer
                          uniqueOperators:
                            type: integer
        '400':
          $ref: '#/components/responses/400'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
        '404':
          $ref: '#/components/responses/404'
        '422':
          $ref: '#/components/responses/422'
        '429':
          $ref: '#/components/responses/429'
        '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
    '401':
      description: >-
        Although the HTTP standard specifies "unauthorized", semantically this
        response means "unauthenticated". That is, the client must authenticate
        itself to get the requested response.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: object
                properties:
                  code:
                    type: string
                    enum:
                      - unauthorized
                    description: A short code indicating the error code returned.
                    example: unauthorized
                  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#unauthorized
                required:
                  - code
                  - message
            required:
              - error
    '403':
      description: >-
        The client does not have access rights to the content; that is, it is
        unauthorized, so the server is refusing to give the requested resource.
        Unlike 401 Unauthorized, the client's identity is known to the server.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: object
                properties:
                  code:
                    type: string
                    enum:
                      - forbidden
                    description: A short code indicating the error code returned.
                    example: forbidden
                  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#forbidden
                required:
                  - code
                  - message
            required:
              - error
    '404':
      description: The server cannot find the requested resource.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: object
                properties:
                  code:
                    type: string
                    enum:
                      - not_found
                    description: A short code indicating the error code returned.
                    example: not_found
                  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#not_found
                required:
                  - code
                  - message
            required:
              - error
    '422':
      description: >-
        The request was well-formed but was unable to be followed due to
        semantic errors.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: object
                properties:
                  code:
                    type: string
                    enum:
                      - unprocessable_entity
                    description: A short code indicating the error code returned.
                    example: unprocessable_entity
                  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#unprocessable_entity
                required:
                  - code
                  - message
            required:
              - error
    '429':
      description: >-
        The user has sent too many requests in a given amount of time ("rate
        limiting")
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: object
                properties:
                  code:
                    type: string
                    enum:
                      - rate_limit_exceeded
                    description: A short code indicating the error code returned.
                    example: rate_limit_exceeded
                  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#rate_limit_exceeded
                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

````