Retrieves a list of active OTC quotes.
API Key Permissions Required: Orders and trades - Query open orders & trades
curl --request POST \
--url https://api.kraken.com/0/private/GetOtcActiveQuotes \
--header 'API-Key: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"nonce": 123,
"vault_id": "456TR123"
}
'{
"error": [
"EGeneral:Invalid arguments"
],
"result": [
{
"expires": {
"time": 1715155200000
},
"quote_id": "00001c47-8f59-4099-b6f8-b637437ef1ab",
"base": "BTC",
"quote": "USD",
"type": "buy",
"amount": "2.5",
"settlement": "automated",
"client_order_id": "7264675290025181184",
"price": "100000.25",
"total": "250000.625"
}
]
}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.
Request body for retrieving active OTC quotes. This endpoint allows filtering of active quotes based on specific criteria. All parameters are optional and can be used to refine the search results.
curl --request POST \
--url https://api.kraken.com/0/private/GetOtcActiveQuotes \
--header 'API-Key: <api-key>' \
--header 'API-Sign: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"nonce": 123,
"vault_id": "456TR123"
}
'{
"error": [
"EGeneral:Invalid arguments"
],
"result": [
{
"expires": {
"time": 1715155200000
},
"quote_id": "00001c47-8f59-4099-b6f8-b637437ef1ab",
"base": "BTC",
"quote": "USD",
"type": "buy",
"amount": "2.5",
"settlement": "automated",
"client_order_id": "7264675290025181184",
"price": "100000.25",
"total": "250000.625"
}
]
}