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

# Get Strategy Vault Info

> 
**Limit: 10 requests per second per IP address**

`GET /v1/public/strategy_vault/vault/info`




## OpenAPI

````yaml sv.openapi get /v1/public/strategy_vault/vault/info
openapi: 3.0.1
info:
  title: SV
  description: ''
  version: 1.0.0
servers:
  - url: https://api-sv.orderly.org
    description: Mainnet
  - url: https://testnet-api-sv.orderly.org
    description: Testnet
security: []
tags:
  - name: public
  - name: private
paths:
  /v1/public/strategy_vault/vault/info:
    get:
      tags:
        - public
      summary: Get Strategy Vault Info
      description: |

        **Limit: 10 requests per second per IP address**

        `GET /v1/public/strategy_vault/vault/info`
      parameters:
        - name: vault_id
          in: query
          description: return all if empty
          required: false
          schema:
            type: string
        - name: status
          in: query
          description: return all if no filter
          required: false
          schema:
            type: string
        - name: broker_ids
          in: query
          description: can filter multiple broker_id per query.
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VaultInfoResponse'
components:
  schemas:
    VaultInfoResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                rows:
                  type: array
                  items:
                    type: object
                    properties:
                      vault_id:
                        type: string
                        example: ''
                      vault_address:
                        type: string
                        example: ''
                      vault_type:
                        type: string
                        example: protocol
                      vault_name:
                        type: string
                        example: Orderly OmniVault
                      description:
                        type: string
                        example: >-
                          Earn passive yields effortlessly, no trading expertise
                          required. Deposit...
                      sp_address:
                        type: string
                        example: xxxxxxx
                      sp_name:
                        type: string
                        description: return null if not set
                        example: yyyy
                      asset:
                        type: string
                        example: USDC
                      vault_age:
                        type: number
                        description: >-
                          From period 0 start time to current time; in terms of
                          day.
                        example: 180
                      status:
                        type: string
                        description: '`live` / `pre_launch` / `closing` / `closed`'
                        example: live
                      vault_start_time:
                        type: number
                        description: First period start time
                        example: 1702989203989
                      performance_fee_rate:
                        type: number
                        example: 0.3
                      supported_chains:
                        type: array
                        items:
                          type: object
                          properties:
                            chain_id:
                              type: string
                              example: '1'
                            chain_name:
                              type: string
                              example: Ethereum
                        example:
                          - chain_id: '1'
                            chain_name: Ethereum
                          - chain_id: '42161'
                            chain_name: Arbitrum
                          - chain_id: '8453'
                            chain_name: Base
                          - chain_id: '10'
                            chain_name: Optimism
                          - chain_id: '137'
                            chain_name: Polygon
                      tvl:
                        type: number
                        example: 123456789
                      valid_hpr:
                        type: number
                        example: 30
                      30d_apy:
                        type: number
                        example: 0.24
                      recovery_30d_apy:
                        type: number
                        example: 0
                      vault_lifetime_net_pnl:
                        type: number
                        example: 123456
                      lp_counts:
                        type: number
                        example: 1204
                      total_main_shares:
                        type: number
                        example: 123456789
                      lifetime_apy:
                        type: number
                        example: 0.21
                      lock_duration:
                        type: number
                        example: 48
                      min_deposit_amount:
                        type: number
                        example: 10
                      min_withdrawal_amount:
                        type: number
                        example: 10
                      gate_threshold_pct:
                        type: number
                        example: 0.1
                      gate_triggered:
                        type: boolean
                        example: false
                      broker_id:
                        type: string
                        example: orderly
    BasicResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        timestamp:
          type: number
          example: 1702989203989

````