> ## 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 Fund Details

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

`GET /v1/public/strategy_vault/fund/info`

View Strategy Fund Info




## OpenAPI

````yaml sv.openapi get /v1/public/strategy_vault/fund/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/fund/info:
    get:
      tags:
        - public
      summary: Get Strategy Fund Details
      description: |

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

        `GET /v1/public/strategy_vault/fund/info`

        View Strategy Fund Info
      parameters:
        - name: vault_id
          in: query
          description: ''
          required: true
          schema:
            type: string
        - name: wallet_address
          in: query
          description: ''
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FundInfoResponse'
components:
  schemas:
    FundInfoResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                fund_nav:
                  type: number
                  example: 123456789
                fund_lifetime_net_pnl:
                  type: number
                  example: 123456
                fund_total_strategy_shares:
                  type: number
                  example: 123456789
                est_strategy_share_price:
                  type: number
                  example: 1.5
                broker_id:
                  type: string
                  example: orderly
                current_period_number:
                  type: number
                  example: 4
                period_start_time:
                  type: number
                  example: 1738454400000
                period_end_time:
                  type: number
                  example: 1738540800000
                period_duration:
                  type: number
                  example: 60
                performance_fee_rate:
                  type: number
                  example: 0
    BasicResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        timestamp:
          type: number
          example: 1702989203989

````