> ## 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 internal transfer history

> **Limit: 10 requests per 1 second**

`GET /v1/internal_transfer_history`

Orderly key must has `asset` scope to access this endpoint.




## OpenAPI

````yaml orderly.openapi get /v1/internal_transfer_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/internal_transfer_history:
    get:
      tags:
        - private
      summary: Get internal transfer history
      description: |
        **Limit: 10 requests per 1 second**

        `GET /v1/internal_transfer_history`

        Orderly key must has `asset` scope to access this endpoint.
      parameters:
        - name: status
          in: query
          description: '`CREATED`/`PENDING`/`COMPLETED`/`FAILED`'
          required: false
          example: ''
          schema:
            type: string
        - name: start_t
          in: query
          description: ''
          required: false
          example: ''
          schema:
            type: string
        - name: end_t
          in: query
          description: ''
          required: false
          example: ''
          schema:
            type: string
        - 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: side
          in: query
          description: '`IN`/`OUT`'
          required: true
          example: ''
          schema:
            type: string
        - name: from_account_id
          in: query
          description: ''
          required: false
          example: ''
          schema:
            type: string
        - name: to_account_id
          in: query
          description: ''
          required: false
          example: ''
          schema:
            type: string
        - name: main_sub_only
          in: query
          description: >
            If True, return only internal transfers between main account and sub
            accounts. 

            If False, return only internal transfers between main account and
            other main accounts. 

            If empty, return all transfer history.
          required: false
          example: ''
          schema:
            type: boolean
        - $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/GetInternalTransferHistoryResponse'
      deprecated: false
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:
    GetInternalTransferHistoryResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - meta
                - rows
              properties:
                meta:
                  $ref: '#/components/schemas/PaginationMeta'
                rows:
                  type: array
                  items:
                    type: object
                    properties:
                      internal_transfer_request_id:
                        type: number
                        example: 123
                      id:
                        description: Unique ID of the internal transfer record.
                        type: string
                        example: '230707030600002'
                      token:
                        type: string
                        example: USDC
                      amount:
                        type: number
                        example: 555
                      from_account_id:
                        type: string
                        example: '0x000000'
                      to_account_id:
                        type: string
                        example: '0x000000'
                      status:
                        type: string
                        example: FAILED
                      created_time:
                        type: number
                        example: 1688699193034
                      updated_time:
                        type: number
                        example: 1688699193034
    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

````