Retrieve information about specific trades/fills.
API Key Permissions Required: Orders and trades - Query closed orders & trades
curl --request POST \
--url https://api.kraken.com/0/private/QueryTrades \
--header 'API-Key: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"nonce": 1695828490,
"txid": "L2QE42-IGSZ3-WEVTLK, STMH53C-C54CG-4SO42I",
"trades": false
}
'{
"error": [],
"result": {
"THVRQM-33VKH-UCI7BS": {
"ordertxid": "OQCLML-BW3P3-BUCMWZ",
"postxid": "TKH2SE-M7IF5-CFI7LT",
"pair": "XXBTZUSD",
"time": 1688667796.8802,
"type": "buy",
"ordertype": "limit",
"price": "30010.00000",
"cost": "600.20000",
"fee": "0.00000",
"vol": "0.02000000",
"margin": "0.00000",
"misc": "",
"trade_id": 93748276,
"maker": true
},
"TTEUX3-HDAAA-RC2RUO": {
"ordertxid": "OH76VO-UKWAD-PSBDX6",
"postxid": "TKH2SE-M7IF5-CFI7LT",
"pair": "XXBTZEUR",
"time": 1688082549.3138,
"type": "buy",
"ordertype": "limit",
"price": "27732.00000",
"cost": "0.20020",
"fee": "0.00000",
"vol": "0.00020000",
"margin": "0.00000",
"misc": "",
"trade_id": 74625834,
"maker": true
}
}
}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
Comma delimited list of transaction IDs to query info about (20 maximum)
Whether or not to include trades related to position in output
Optional parameter for viewing xstocks data.
rebased: Display in terms of underlying equity.base: Display in terms of SPV tokens.rebased, base curl --request POST \
--url https://api.kraken.com/0/private/QueryTrades \
--header 'API-Key: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"nonce": 1695828490,
"txid": "L2QE42-IGSZ3-WEVTLK, STMH53C-C54CG-4SO42I",
"trades": false
}
'{
"error": [],
"result": {
"THVRQM-33VKH-UCI7BS": {
"ordertxid": "OQCLML-BW3P3-BUCMWZ",
"postxid": "TKH2SE-M7IF5-CFI7LT",
"pair": "XXBTZUSD",
"time": 1688667796.8802,
"type": "buy",
"ordertype": "limit",
"price": "30010.00000",
"cost": "600.20000",
"fee": "0.00000",
"vol": "0.02000000",
"margin": "0.00000",
"misc": "",
"trade_id": 93748276,
"maker": true
},
"TTEUX3-HDAAA-RC2RUO": {
"ordertxid": "OH76VO-UKWAD-PSBDX6",
"postxid": "TKH2SE-M7IF5-CFI7LT",
"pair": "XXBTZEUR",
"time": 1688082549.3138,
"type": "buy",
"ordertype": "limit",
"price": "27732.00000",
"cost": "0.20020",
"fee": "0.00000",
"vol": "0.00020000",
"margin": "0.00000",
"misc": "",
"trade_id": 74625834,
"maker": true
}
}
}