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

# Get account-owned vaults

> Retrieve paginated list of vaults owned by a specific account.
Includes vault performance metrics, AUM, and depositor count.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/account_owned_vaults
openapi: 3.1.0
info:
  title: Decibel Trading API
  description: >-
    RESTful API for Decibel. Provides read-only endpoints for market data,
    trading operations, positions, and analytics.
  contact:
    name: Decibel Team
    url: https://decibel.trade/
  license:
    name: ''
  version: 1.0.0
servers:
  - url: https://api.mainnet.aptoslabs.com/decibel
    description: Mainnet
  - url: https://api.testnet.aptoslabs.com/decibel
    description: Testnet
security:
  - bearerAuth: []
tags:
  - name: Market Data
    description: Market information and real-time data endpoints
  - name: User
    description: User information and account management
  - name: Trades
    description: Trading operations and history
  - name: Positions
    description: User position management
  - name: Orders
    description: Order management and history
  - name: TWAP
    description: Time-weighted average price orders
  - name: Bulk Orders
    description: Bulk order management
  - name: Vaults
    description: Vault operations and management
  - name: Analytics
    description: Analytics and performance metrics
  - name: Predeposit Rewards
    description: Season 0 predeposit USDC rewards
  - name: Referrals
    description: Referral code management and tracking
paths:
  /api/v1/account_owned_vaults:
    get:
      tags:
        - Vaults
      summary: Get account-owned vaults
      description: |-
        Retrieve paginated list of vaults owned by a specific account.
        Includes vault performance metrics, AUM, and depositor count.
      operationId: handle_account_owned_vaults
      parameters:
        - name: account
          in: query
          description: Account address
          required: true
          schema:
            type: string
          example: 0x123...
        - name: pagination
          in: query
          description: Pagination parameters
          required: true
          schema:
            type: object
            properties:
              limit:
                type: integer
                format: int32
                maximum: 1000
                minimum: 0
              offset:
                type: integer
                format: int32
                maximum: 10000
                minimum: 0
      responses:
        '200':
          description: Account-owned vaults retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedResponse_VaultDto'
        '500':
          description: Database error
components:
  schemas:
    PaginatedResponse_VaultDto:
      type: object
      required:
        - items
        - total_count
      properties:
        items:
          type: array
          items:
            type: object
            required:
              - vault_address
              - vault_name
              - vault_share_symbol
              - status
              - age_days
              - num_managers
            properties:
              age_days:
                type: integer
                format: int64
              all_time_return:
                type:
                  - number
                  - 'null'
                format: double
                description: >-
                  Share-price-based time-weighted return percentage since
                  inception
              apr:
                type:
                  - number
                  - 'null'
                format: double
                description: >-
                  Annualized percentage return (avg daily share-price yield ×
                  365).

                  NULL if vault has < 14 days of snapshot data.
              manager_equity:
                type:
                  - number
                  - 'null'
                format: double
              manager_stake:
                type:
                  - number
                  - 'null'
                format: double
              num_managers:
                type: integer
                format: int32
              status:
                type: string
              tvl:
                type:
                  - number
                  - 'null'
                format: double
              vault_address:
                type: string
              vault_name:
                type: string
              vault_share_symbol:
                type: string
          description: The items in the current page
        total_count:
          type: integer
          format: int32
          description: The total number of items across all pages
          minimum: 0
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Bearer token from Geomi. See
        [Authentication](/api-reference/rest/authentication) for setup
        instructions.

````