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

# Get a MicroVault

Read vault configuration, balances, valuation, and automation status.

<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}
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}:
    parameters:
      - name: vaultId
        in: path
        required: true
        schema:
          $ref: '#/components/schemas/UuidV4'
    get:
      tags:
        - MicroVaults
      summary: Get a MicroVault
      operationId: getMicrovault
      responses:
        '200':
          description: Vault configuration, balances, and valuation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MicroVaultDetail'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          description: Vault not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MicroVaultError'
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
    MicroVaultDetail:
      type: object
      required:
        - vault
      properties:
        vault:
          $ref: '#/components/schemas/MicroVault'
      example:
        vault:
          id: d9902b20-6499-4465-a4c3-5d2208182f79
          chainId: 11155111
          address: '0x2222222222222222222222222222222222222222'
          shareName: Acme Treasury MicroVault
          shareSymbol: acmeUSDC
          baseAssetAddress: '0x1c7d4b196cb0c7b01d743fbc6116a902379c7238'
          authorityAddress: '0x1111111111111111111111111111111111111111'
          status: active
          exported: false
          totalAssetsUnits: '1025000000'
          idleAssetsUnits: '25000000'
          navPerShareUnits: '1004901960784313725'
    MicroVaultError:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Stable machine-readable error code.
        message:
          type: string
          nullable: true
        details:
          nullable: true
      example:
        error: microvaults_not_enabled
        message: MicroVaults are not enabled for this organization
    MicroVault:
      type: object
      additionalProperties: true
      required:
        - id
      properties:
        id:
          $ref: '#/components/schemas/UuidV4'
        chainId:
          type: integer
          example: 11155111
        address:
          $ref: '#/components/schemas/NullableNonzeroEvmAddress'
        shareName:
          type: string
          example: Acme Treasury MicroVault
        shareSymbol:
          type: string
          example: acmeUSDC
        baseAssetAddress:
          $ref: '#/components/schemas/NullableNonzeroEvmAddress'
        authorityAddress:
          $ref: '#/components/schemas/NullableNonzeroEvmAddress'
        status:
          type: string
        exported:
          type: boolean
        totalAssetsUnits:
          allOf:
            - $ref: '#/components/schemas/MicroVaultUint256'
          nullable: true
        idleAssetsUnits:
          allOf:
            - $ref: '#/components/schemas/MicroVaultUint256'
          nullable: true
        navPerShareUnits:
          allOf:
            - $ref: '#/components/schemas/MicroVaultUint256'
          nullable: true
        nav:
          type: object
          additionalProperties: true
          description: NAV result and supporting valuation details.
    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'
    MicroVaultUint256:
      type: string
      pattern: ^(0|[1-9][0-9]*)$
      description: >-
        Unsigned base-10 integer string. Asset and share amounts use token base
        units.
      example: '1000000'
  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

````