> ## 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 account’s strategy vault transaction history

> `GET /v1/account_sv_transaction_history`

Get account transaction history with strategy vaults




## OpenAPI

````yaml orderly.openapi get /v1/account_sv_transaction_history
openapi: 3.0.1
info:
  title: EVM
  description: ''
  version: 1.0.0
servers:
  - url: https://api.orderly.org
    description: Mainnet
  - url: https://testnet-api.orderly.org
    description: Testnet
security: []
tags:
  - name: public
  - name: private
paths:
  /v1/account_sv_transaction_history:
    get:
      tags:
        - public
      summary: Get account’s strategy vault transaction history
      description: |
        `GET /v1/account_sv_transaction_history`

        Get account transaction history with strategy vaults
      parameters:
        - $ref: '#/components/parameters/orderly_account_id'
        - $ref: '#/components/parameters/orderly_key'
        - $ref: '#/components/parameters/orderly_signature'
        - name: vault_id
          in: query
          description: if vault_id is empty, it will return all vaults
          required: false
          example: ''
          schema:
            type: string
        - name: start_t
          in: query
          description: >-
            start time range that you wish to query, noted that the time stamp
            is a 13-digits timestamp.
          required: false
          example: ''
          schema:
            type: string
        - name: end_t
          in: query
          description: >-
            end time range that you wish to query, noted that the time stamp is
            a 13-digits timestamp.
          required: false
          example: ''
          schema:
            type: string
        - name: page
          in: query
          description: the page you wish to query. start from 1
          required: false
          example: ''
          schema:
            type: string
        - name: size
          in: query
          description: 'Default: 60'
          required: false
          example: ''
          schema:
            type: string
        - name: type
          in: query
          description: deposit/withdraw, if empty = return all
          required: false
          example: ''
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetAccountStrategyVaultTransactionHistory'
      deprecated: false
components:
  parameters:
    orderly_account_id:
      name: orderly-account-id
      in: header
      description: Account ID of the authenticated account.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: 6.858456565150415e+75
    orderly_key:
      name: orderly-key
      in: header
      description: Public orderly key used to sign the request.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: ed25519:8tm7dnKYkSc3FzgPuJaw1wztr79eeZpN35nHW5pL5XhX
    orderly_signature:
      name: orderly-signature
      in: header
      description: Signature of the request payload generated with the orderly key.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: >-
        dG4bkKiqG0dUYLzViRZkvbI6Sy239JxAdNMIBxFZ4w030Jofr0ORV06GHtvXZkaZaWUXE+XAU3fnzKN/5fDeBQ==
  schemas:
    GetAccountStrategyVaultTransactionHistory:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - meta
                - rows
              properties:
                rows:
                  description: >-
                    Aggregate position records for the main account and its sub
                    accounts.
                  type: array
                  items:
                    type: object
                    required:
                      - vault_id
                      - created_time
                      - type
                      - status
                      - amount_change
                    properties:
                      vault_id:
                        type: string
                      created_time:
                        type: integer
                        example: 1734652800000
                      type:
                        type: string
                        example: withdrawal
                      status:
                        type: string
                        example: pending
                        description: '`pending` / `completed` / `failed`'
                      asset:
                        type: string
                        example: USDC
                      amount_change:
                        type: integer
                        example: 100
                        description: >
                          All values are positive. When type = `deposit`,
                          `amount_change` is shown normally. 

                          When type = `withdrawal`, only when status ==
                          `completed` return `amount_change` value, all other
                          status return null.
                      shares_change:
                        type: integer
                        example: 88.009
                        description: >
                          All values are positive. When type = `withdrawal`,
                          `shares_change` is shown normally. 

                          When type = `deposit`, only when status == `completed`
                          return `shares_change` value, all other status return
                          null.
                meta:
                  $ref: '#/components/schemas/PaginationMeta'
    BasicResponse:
      required:
        - success
      type: object
      properties:
        success:
          description: Indicates whether the request was successful.
          type: boolean
          example: true
        timestamp:
          description: Server timestamp in milliseconds.
          type: integer
          example: 1702989203989
    PaginationMeta:
      required:
        - current_page
        - records_per_page
        - total
      type: object
      properties:
        total:
          type: integer
          example: 9
        records_per_page:
          type: integer
          example: 25
        current_page:
          type: integer
          example: 1
          description: start from 1

````