> ## 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 Liquidity Provider Performance

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

`GET /v1/public/strategy_vault/lp/performance`

Liquidity Provider’s performance in a vault




## OpenAPI

````yaml sv.openapi get /v1/public/strategy_vault/lp/performance
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/lp/performance:
    get:
      tags:
        - public
      summary: Get Liquidity Provider Performance
      description: |

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

        `GET /v1/public/strategy_vault/lp/performance`

        Liquidity Provider’s performance in a vault
      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/LpPerformanceResponse'
components:
  schemas:
    LpPerformanceResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                rows:
                  type: array
                  items:
                    type: object
                    properties:
                      time_range:
                        type: string
                      incremental_net_pnl:
                        type: number
                      max_drawdown:
                        type: number
                      pnl_max_drawdown:
                        type: number
              example:
                - time_range: 24h
                  incremental_net_pnl: 123
                  max_drawdown: 0.015
                  pnl_max_drawdown: 0.012
                - time_range: 7d
                  incremental_net_pnl: -2559
                  max_drawdown: 0.02
                  pnl_max_drawdown: 0.04
                - time_range: 30d
                  incremental_net_pnl: 8888.021
                  max_drawdown: 0.0253
                  pnl_max_drawdown: 0.0051
                - time_range: all_time
                  incremental_net_pnl: 99888.0702
                  max_drawdown: 0.03
                  pnl_max_drawdown: 0.08
    BasicResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        timestamp:
          type: number
          example: 1702989203989

````