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

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

`GET /v1/public/strategy_vault/vault/performance`




## OpenAPI

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

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

        `GET /v1/public/strategy_vault/vault/performance`
      parameters:
        - name: vault_id
          in: query
          description: ''
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VaultPerformanceResponse'
components:
  schemas:
    VaultPerformanceResponse:
      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
                      fees:
                        type: number
                      volume:
                        type: number
                    example:
                      - time_range: 24h
                        incremental_net_pnl: 5678.9
                        max_drawdown: 0.015
                        pnl_max_drawdown: 0.012
                        fees: 1234.5
                        volume: 456789
                      - time_range: 7d
                        incremental_net_pnl: -45678.9
                        max_drawdown: 0.02
                        pnl_max_drawdown: 0.04
                        fees: 7890.5
                        volume: 1234567
                      - time_range: 30d
                        incremental_net_pnl: 172567.73
                        max_drawdown: 0.0253
                        pnl_max_drawdown: 0.0051
                        fees: 56789
                        volume: 3456789
                      - time_range: all_time
                        incremental_net_pnl: 1234567.89
                        max_drawdown: 0.03
                        pnl_max_drawdown: 0.08
                        fees: 98765
                        volume: 9876543
    BasicResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        timestamp:
          type: number
          example: 1702989203989

````