Skip to main content
GET
/
v1
/
sv
/
internal_transfer_history
Get internal transfer history
curl --request GET \
  --url https://api.orderly.org/v1/sv/internal_transfer_history \
  --header 'orderly-account-id: <orderly-account-id>' \
  --header 'orderly-key: <orderly-key>' \
  --header 'orderly-signature: <orderly-signature>' \
  --header 'orderly-timestamp: <orderly-timestamp>'
{
  "success": true,
  "timestamp": 1702989203989,
  "data": {
    "meta": {
      "total": 2,
      "records_per_page": 25,
      "current_page": 1
    },
    "rows": [
      {
        "executed_time": 1734652800000,
        "from_account": "",
        "amount": 13633.532389
      }
    ]
  }
}

Headers

orderly-timestamp
string
required

Timestamp of the signed request in milliseconds.

orderly-account-id
string
required

Account ID of the authenticated account.

orderly-key
string
required

Public orderly key used to sign the request.

orderly-signature
string
required

Signature of the request payload generated with the orderly key.

Query Parameters

page
number

the page you wish to query start from 1

size
number

the page size you wish to query (max: 500)

Response

200 - application/json

Success

success
boolean
required

Indicates whether the request was successful.

Example:

true

timestamp
integer

Server timestamp in milliseconds.

Example:

1702989203989

data
object