> ## 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 Provider’s Info

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

`GET /v1/public/strategy_vault/sp/info`




## OpenAPI

````yaml sv.openapi get /v1/public/strategy_vault/sp/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/sp/info:
    get:
      tags:
        - public
      summary: Get Strategy Provider’s Info
      description: |

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

        `GET /v1/public/strategy_vault/sp/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/SpInfoResponse'
components:
  schemas:
    SpInfoResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                sp_nav:
                  type: number
                  example: 56789
                sp_tvl:
                  type: number
                  example: 56789
                sp_total_strategy_shares:
                  type: number
                  example: 12700
                sp_strategy_shares_pct:
                  type: number
                  example: 0.12
                available_strategy_shares:
                  type: number
                  example: 12458.05
                sp_lifetime_net_pnl:
                  type: number
                  example: 8888
                potential_pnl:
                  type: number
                  example: 2567.73
                sp_reserved_collateral:
                  type: number
                  example: 50000
                sp_min_shares_pct:
                  type: number
                  example: 0.01
                total_performance_fees:
                  type: number
                  example: 1.24
    BasicResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        timestamp:
          type: number
          example: 1702989203989

````