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

# Vault Information

> Get vault information including share price and AUM



## OpenAPI

````yaml open-apis/0d.json get /vaults/{vault_id}/info
openapi: 3.1.0
info:
  title: zerod_api
  description: 0D Master API for vaults
  license:
    name: MIT
    identifier: MIT
  version: 0.1.0
servers:
  - url: https://api.0d.finance/{version}
    variables:
      version:
        default: v1
        enum:
          - v1
security: []
tags:
  - name: zerod_bin
    description: 0d, master api
  - name: User
    description: User profile endpoints
  - name: Vaults
    description: Vault management endpoints
paths:
  /vaults/{vault_id}/info:
    get:
      tags:
        - Vaults
      operationId: get_vault_info
      parameters:
        - name: vault_id
          in: path
          description: Vault identifier
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Vault information including share price and AUM
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VaultInfoDTO'
        '404':
          description: Vault not found
        '500':
          description: Internal server error
components:
  schemas:
    VaultInfoDTO:
      type: object
      required:
        - current_epoch
        - underlying_currency
        - pending_withdrawals_assets
        - aum
        - buffer
        - share_price_in_usd
      properties:
        aum:
          type: string
          description: Assets under management (AUM) in underlying currency
        buffer:
          type: string
          description: Current buffer amount in underlying currency
        current_epoch:
          type: string
          description: Current epoch number
        pending_withdrawals_assets:
          type: string
          description: Total assets required for pending withdrawals (sum of all epochs)
        share_price_in_usd:
          type: string
          description: Current share price in USD
        underlying_currency:
          type: string
          description: The underlying currency ticker (e.g., "USDC", "USDT")

````