This endpoint returns the most recent 1000 executions or the 1000 executions since a specified time.
Authentication is not required.
Note: This endpoint only returns values since 27th of May, 2021.
Endpoint |
Request Type | Permissible API Keys |
/api/history/v2/market/{symbol}/executions | GET | N/A |
Argument | Type | Required | Description |
symbol
|
string | Yes | The symbol of the Futures, see Ticker Symbols |
since |
integer |
No |
Unix timestamp in millisecond |
before |
integer |
No |
Unix timestamp in millisecond, must have since parameter included |
sort |
string |
No |
asc for results in ascending order desc for results in descending Required if since or before argument are included.Default is desc |
continuationToken |
string <base64> |
No |
Continuation token provided from a prior response which can be used in call to return the next set of available results |
Sample Call |
https://futures.kraken.com/api/history/v2/market/pi_xbtusd/executions https://futures.kraken.com/api/history/v2/market/pi_xbtusd/executions?since=1622588804000&sort=asc |
Sample Return if Successful |
{ ... |
Field |
Type | Description |
uid | string | System event UID |
timestamp | positive integer |
Unix timestamp in milliseconds
|
event | set of structures | |
Execution | set of structures | |
execution | structure | Structure containing execution details |
uid | string | Execution uid |
makerOrder | structure | Structure containing maker order details |
uid | string | Maker side order uid |
tradeable | string | The symbol of the Futures |
direction | string |
The side associated with the order - buy or sell
|
quantity | positive float |
The quantity (size) associated with the order
|
timestamp | positive integer |
Unix timestamp in milliseconds
|
limitPrice | positive float |
The limit price associated with a limit order
|
orderType | string | The order type, one of:
|
reduceOnly | boolean |
Is the order a reduce only order or not
|
lastUpdateTimestamp | positive integer |
Unix timestamp in milliseconds
|
takerOrder | structure |
Structure containing taker order details
|
uid | string | Taker side order uid |
tradeable | string | The symbol of the Futures |
direction | string |
The side associated with the order - buy or sell
|
quantity | positive float |
The quantity (size) associated with the order
|
timestamp | positive integer |
Unix timestamp in milliseconds
|
limitPrice | positive float |
The limit price associated with a limit order
|
orderType | string | The order type, one of:
|
reduceOnly | boolean |
Is the order a reduce only order or not
|
lastUpdateTimestamp | positive integer |
Unix timestamp in milliseconds
|
timestamp | positive integer |
Unix timestamp in milliseconds
|
quantity | positive float |
The quantity (size) associated with the execution
|
price | positive float |
The Price associated with the execution
|
markPrice | positive float |
The Mark Price at time of execution
|
limitFilled | boolean |
Whether the limit order was filled as a result of this execution
|
usdValue | positive float |
The USD value of the execution
|
takerReducedQuantity | positive float | Always undefined |
len | positive integer | Length of response |
Sample Return if Unsuccessful |
{ "reason": "Resource was not found.", "status": "not_found" } |
Field |
Type | Description |
reason
|
String |
Reason for error:
|
status
|
String |
Status of request:
|