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

# List MicroVault activity

> Returns subscription, rebalance, and redemption activity.

List subscription, rebalance, and redemption activity.

<Note>
  MicroVaults are in private preview for enabled sandbox organizations on Ethereum Sepolia.
</Note>


## OpenAPI

````yaml swagger/swagger-combined.yaml GET /v2/microvaults/vaults/{vaultId}/activity
openapi: 3.0.0
info:
  title: Ground API
  description: Core API for Portfolio Wallets, gVaults, MicroVaults, and webhooks.
  version: 2.0.0
servers:
  - url: https://sandbox.groundtech.co
  - url: https://production.groundtech.co
security:
  - bearerAuth: []
tags:
  - name: System
    description: System health and utility endpoints.
  - name: Sandbox Faucets
    description: Sandbox-only test token faucets.
  - name: Portfolio Wallets
    description: >-
      Portfolio wallets with strategy allocation, deposits, withdrawals, and
      yield positions.
  - name: gVaults
    description: App-specific Ground vaults with customer access and fee sharing.
  - name: MicroVaults
    description: >-
      Customer-owned onchain vaults with externally held ERC-20 shares. Private
      preview in sandbox on Ethereum Sepolia.
  - name: Webhook Endpoints
    description: Webhook endpoint management for portfolio wallet notifications.
paths:
  /v2/microvaults/vaults/{vaultId}/activity:
    parameters:
      - name: vaultId
        in: path
        required: true
        schema:
          $ref: '#/components/schemas/UuidV4'
    get:
      tags:
        - MicroVaults
      summary: List MicroVault activity
      description: Returns subscription, rebalance, and redemption activity.
      operationId: listMicrovaultActivity
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
            default: 25
            minimum: 1
            maximum: 100
        - name: cursor
          in: query
          schema:
            type: string
            maxLength: 512
      responses:
        '200':
          description: MicroVault activity in reverse chronological order.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MicroVaultActivityList'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    UuidV4:
      type: string
      format: uuid
      pattern: >-
        ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89aAbB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$
      example: 8f4c52d7-62ab-4db9-a964-92f481f6b851
    MicroVaultActivityList:
      type: object
      required:
        - items
        - nextCursor
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/MicroVaultActivity'
        nextCursor:
          type: string
          nullable: true
      example:
        items:
          - id: 32879de3-6347-4433-8c62-6cb86831f427
            createdAt: '2026-09-10T19:28:04.000Z'
            kind: subscription
            status: confirmed
            actor: '0x3333333333333333333333333333333333333333'
            txHash: '0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'
            details:
              amountAssets: '100000000'
              shares: '99512195121951219512'
              receiver: '0x3333333333333333333333333333333333333333'
        nextCursor: null
    MicroVaultActivity:
      type: object
      required:
        - id
        - createdAt
        - kind
        - status
        - actor
        - txHash
        - details
      properties:
        id:
          $ref: '#/components/schemas/UuidV4'
        createdAt:
          type: string
          format: date-time
        kind:
          type: string
          enum:
            - subscription
            - rebalance
            - redemption
        status:
          type: string
          enum:
            - pending
            - processing
            - claimable
            - confirmed
            - failed
        actor:
          $ref: '#/components/schemas/NullableNonzeroEvmAddress'
        txHash:
          $ref: '#/components/schemas/NullableTransactionHash'
        details:
          type: object
          additionalProperties: true
          description: Amounts, wallet addresses, and source operations for this activity.
    AuthErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Authentication or authorization error message.
        message:
          type: string
          nullable: true
          description: Additional auth middleware detail, when present.
        code:
          type: string
          nullable: true
          enum:
            - unauthenticated
            - forbidden
          description: >-
            Some auth and scope failures include a stable code; middleware
            errors may omit it.
    NullableNonzeroEvmAddress:
      type: string
      nullable: true
      description: >-
        Deployed nonzero EVM contract address, or null while deployment is
        pending.
      minLength: 42
      maxLength: 42
      pattern: ^0x(?!0{40}$)[0-9a-fA-F]{40}$
      example: '0x7c4a1cb5a3d5c3c4e019c3f6ab29a0f98c21b814'
    NullableTransactionHash:
      type: string
      nullable: true
      description: EVM transaction hash, or null when no transaction was submitted.
      minLength: 66
      maxLength: 66
      pattern: ^0x[0-9a-fA-F]{64}$
      example: '0xabababababababababababababababababababababababababababababababab'
  responses:
    Unauthorized:
      description: >-
        The request is missing a valid bearer token, or the token is invalid or
        expired.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/AuthErrorResponse'
          example:
            error: Unauthenticated request
            message: Missing or invalid bearer token
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````