> ## 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 Fee History

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

`GET /v1/public/strategy_vault/sp/fees_history`




## OpenAPI

````yaml sv.openapi get /v1/public/strategy_vault/sp/fees_history
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/fees_history:
    get:
      tags:
        - public
      summary: Get Strategy Provider Fee History
      description: |

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

        `GET /v1/public/strategy_vault/sp/fees_history`
      parameters:
        - name: vault_id
          in: query
          description: ''
          required: true
          schema:
            type: string
        - name: wallet_address
          in: query
          description: ''
          required: true
          schema:
            type: string
        - name: page
          in: query
          description: the page you wish to query start from 1
          required: false
          schema:
            type: number
        - name: size
          in: query
          description: 'the page size you wish to query (max: 500)'
          required: false
          schema:
            type: number
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SpFeesHistoryResponse'
components:
  schemas:
    SpFeesHistoryResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            meta:
              type: object
              properties:
                total:
                  type: number
                  example: 3
                records_per_page:
                  type: number
                  example: 20
                current_page:
                  type: number
                  description: start from 1
                  example: 1
            data:
              type: object
              properties:
                rows:
                  type: array
                  items:
                    type: object
                    properties:
                      created_time:
                        type: number
                      period_number:
                        type: number
                      type:
                        type: string
                      shares_change:
                        type: number
                      amount_change:
                        type: number
              example:
                - created_time: 1734652800000
                  period_number: 2
                  type: performance_fee
                  shares_change: 1.24
                  amount_change: 1.24
                - created_time: 1734566400000
                  period_number: 1
                  type: performance_fee
                  shares_change: 0
                  amount_change: 0
                - created_time: 1734480000000
                  period_number: 0
                  type: performance_fee
                  shares_change: 0
                  amount_change: 0
    BasicResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        timestamp:
          type: number
          example: 1702989203989

````