> ## 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 asset history

> **Limit 10 requests per 60 seconds**

`GET /v1/admin/asset/history`




## OpenAPI

````yaml orderly.openapi get /v1/admin/asset/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/admin/asset/history:
    get:
      tags:
        - private
      summary: Get asset history
      description: |
        **Limit 10 requests per 60 seconds**

        `GET /v1/admin/asset/history`
      parameters:
        - name: token
          in: query
          description: token name you want to search
          required: false
          example: ''
          schema:
            type: string
        - name: side
          in: query
          description: '`DEPOSIT`/`WITHDRAW`'
          required: false
          example: ''
          schema:
            type: string
        - name: status
          in: query
          description: >-
            `NEW`/`CONFIRM`/`PROCESSING`/`COMPLETED`/`FAILED`/`PENDING_REBALANCE`
          required: false
          example: ''
          schema:
            type: string
        - name: start_t
          in: query
          description: ''
          required: false
          example: ''
          schema:
            type: number
        - name: end_t
          in: query
          description: ''
          required: false
          example: ''
          schema:
            type: number
        - name: page
          in: query
          description: start from 1
          required: false
          example: ''
          schema:
            type: number
        - name: size
          in: query
          description: ''
          required: false
          example: ''
          schema:
            type: number
        - name: user_account
          in: query
          description: >-
            Target user account to query for admin usage, required for either
            user_account or user_address
          required: false
          example: ''
          schema:
            type: string
        - name: user_address
          in: query
          description: >-
            Target user address to query for admin usage, required for either
            user_account or user_address
          required: false
          example: ''
          schema:
            type: string
        - $ref: '#/components/parameters/orderly_timestamp'
        - $ref: '#/components/parameters/orderly_account_id'
        - $ref: '#/components/parameters/orderly_key'
        - $ref: '#/components/parameters/orderly_signature'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AssetHistoryResponse'
components:
  parameters:
    orderly_timestamp:
      name: orderly-timestamp
      in: header
      description: Timestamp of the signed request in milliseconds.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: '1649920583000'
    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:
    AssetHistoryResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - required:
            - data
          type: object
          properties:
            data:
              type: object
              required:
                - meta
                - rows
              properties:
                meta:
                  $ref: '#/components/schemas/PaginationMeta'
                rows:
                  type: array
                  items:
                    type: object
                    required:
                      - id
                      - tx_id
                      - side
                      - token
                      - amount
                      - fee
                      - trans_status
                      - created_time
                      - updated_time
                      - chain_id
                    properties:
                      id:
                        type: string
                        example: '230707030600002'
                      tx_id:
                        description: >-
                          On-chain transaction hash associated with the
                          transfer.
                        type: string
                        example: >-
                          0x4b0714c63cc7abae72bf68e84e25860b88ca651b7d27dad1e32bf4c027fa5326
                      side:
                        description: Transfer direction of the record.
                        type: string
                        example: WITHDRAW
                      token:
                        description: Token symbol involved in the transfer.
                        type: string
                        example: USDC
                      amount:
                        description: Transfer amount.
                        type: number
                        example: 555
                      fee:
                        description: Fee charged for the transfer.
                        type: number
                        example: 0
                      trans_status:
                        description: Current processing status of the transfer.
                        type: string
                        example: FAILED
                      created_time:
                        description: >-
                          Timestamp when the transfer request was created in
                          milliseconds.
                        type: number
                        example: 1688699193034
                      updated_time:
                        description: >-
                          Timestamp of the latest transfer update in
                          milliseconds.
                        type: number
                        example: 1688699193096
                      chain_id:
                        description: Chain ID associated with the transfer.
                        type: string
                        example: '986532'
    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

````