Retrieves an audit trail of amend transactions on the specified order. The list is ordered by ascending amend timestamp.
API Key Permissions Required: Orders and trades - Query open orders & trades or Orders and trades - Query closed orders & trades, depending on status of order.
curl --request POST \
--url https://api.kraken.com/0/private/OrderAmends \
--header 'API-Key: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"nonce": 1695828490,
"order_id": "OVITN3-BFK3H-63K37C"
}
'{
"response": {
"error": [],
"result": {
"amends": [
{
"amend_id": "TSUN4B-EX2XN-WQ6GKG",
"amend_type": "original",
"order_qty": "0.01000000",
"remaining_qty": "0.01000000",
"limit_price": "61032.8",
"timestamp": 1724158070287558000
},
{
"amend_id": "TF6VAW-VUWMX-6SXTCH",
"amend_type": "user",
"order_qty": "0.01000000",
"remaining_qty": "0.01000000",
"limit_price": "61032.7",
"timestamp": 1724158076936755700
},
{
"amend_id": "TUMY4K-E4MPE-CSL2N3",
"amend_type": "user",
"order_qty": "0.01000000",
"remaining_qty": "0.01000000",
"limit_price": "61032.6",
"timestamp": 1724158214879660000
}
],
"count": 3
}
}
}Documentation Index
Fetch the complete documentation index at: https://kraken-sandbox.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
The "API-Key" header should contain your API key.
Authenticated requests should be signed with the "API-Sign" header, using a signature generated with your private key, nonce, encoded payload, and URI path.
Nonce used in construction of API-Sign header
The Kraken order identifier for the amended order.
Optional parameter for viewing xstocks data.
rebased: Display in terms of underlying equity.base: Display in terms of SPV tokens.rebased, base The first entry contains the original order parameters and has amend_type of original.
The amend transaction history.
Show child attributes
curl --request POST \
--url https://api.kraken.com/0/private/OrderAmends \
--header 'API-Key: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"nonce": 1695828490,
"order_id": "OVITN3-BFK3H-63K37C"
}
'{
"response": {
"error": [],
"result": {
"amends": [
{
"amend_id": "TSUN4B-EX2XN-WQ6GKG",
"amend_type": "original",
"order_qty": "0.01000000",
"remaining_qty": "0.01000000",
"limit_price": "61032.8",
"timestamp": 1724158070287558000
},
{
"amend_id": "TF6VAW-VUWMX-6SXTCH",
"amend_type": "user",
"order_qty": "0.01000000",
"remaining_qty": "0.01000000",
"limit_price": "61032.7",
"timestamp": 1724158076936755700
},
{
"amend_id": "TUMY4K-E4MPE-CSL2N3",
"amend_type": "user",
"order_qty": "0.01000000",
"remaining_qty": "0.01000000",
"limit_price": "61032.6",
"timestamp": 1724158214879660000
}
],
"count": 3
}
}
}