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

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

`GET /v1/public/strategy_vault/lp/transaction_history`




## OpenAPI

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

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

        `GET /v1/public/strategy_vault/lp/transaction_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: type
          in: query
          description: '`deposit` / `withdrawal` / return all if empty'
          required: false
          schema:
            type: string
        - name: chain_id
          in: query
          description: return all if empty
          required: false
          schema:
            type: string
        - name: source
          in: query
          description: '`wallet` / `broker_id` / return all if empty'
          required: false
          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/LpTransactionHistoryResponse'
components:
  schemas:
    LpTransactionHistoryResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                meta:
                  type: object
                  properties:
                    total:
                      type: number
                      example: 9
                    records_per_page:
                      type: number
                      example: 25
                    current_page:
                      type: number
                      description: start from 1
                      example: 1
                rows:
                  type: array
                  items:
                    type: object
                    properties:
                      created_time:
                        type: number
                      period_number:
                        type: number
                      type:
                        type: string
                      source:
                        type: string
                      status:
                        type: string
                      est_assign_period_time:
                        type: number
                      unlock_time:
                        type: number
                      est_claim_time:
                        type: number
                      chain_id:
                        type: string
                      txn_hash:
                        type: string
                      txn_hash_claim:
                        type: string
                      shares_change:
                        type: number
                      amount_change:
                        type: number
                      transaction_nonce:
                        type: string
                        description: >-
                          will return string value if the source != wallet; will
                          return null if source == wallet
                    example:
                      - created_time: 1734652800000
                        period_number: 4
                        type: withdrawal
                        source: wallet
                        status: claimable
                        est_assign_period_time: null
                        unlock_time: null
                        est_claim_time: null
                        chain_id: '1'
                        txn_hash: >-
                          0x4dbc4b0cc722d2f401e9a32fe5be7a52c6834785e2084ac78447e94735b8274d
                        txn_hash_claim: null
                        shares_change: 60
                        amount_change: 88.009
                        transaction_nonce: null
                      - created_time: 1734566400000
                        period_number: 2
                        type: withdrawal
                        source: wallet
                        status: claimable
                        est_assign_period_time: null
                        unlock_time: null
                        est_claim_time: null
                        chain_id: '1'
                        txn_hash: >-
                          0x14a8248f38c2530011ba4c826eb1f1db8dad05025be24461bb42f1bc540ac42e
                        txn_hash_claim: >-
                          0x14a8248f38c2530011ba4c826eb1f1db8dad05025be24461bb42f1bc540ac42e
                        shares_change: 400
                        amount_change: 572.001
                        transaction_nonce: null
                      - created_time: 1734480000000
                        period_number: 1
                        type: deposit
                        source: WOOFi Pro
                        status: available
                        est_assign_period_time: null
                        unlock_time: null
                        est_claim_time: null
                        chain_id: '1'
                        txn_hash: null
                        txn_hash_claim: null
                        shares_change: 465.83
                        amount_change: 2800.004
                        transaction_nonce: null
    BasicResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        timestamp:
          type: number
          example: 1702989203989

````