Skip to main content
POST
/
private
/
OrderAmends
Get Order Amends
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.

Authorizations

API-Key
string
header
required

The "API-Key" header should contain your API key.

API-Sign
string
header
required

Authenticated requests should be signed with the "API-Sign" header, using a signature generated with your private key, nonce, encoded payload, and URI path.

Body

application/json
nonce
integer<int64>
required

Nonce used in construction of API-Sign header

order_id
string

The Kraken order identifier for the amended order.

rebase_multiplier
enum<string> | null
default:rebased

Optional parameter for viewing xstocks data.

  • rebased: Display in terms of underlying equity.
  • base: Display in terms of SPV tokens.
Available options:
rebased,
base

Response

200 - application/json

The first entry contains the original order parameters and has amend_type of original.

result
Amend transactions. · object

The amend transaction history.