-
bitcoin $87959.907984 USD
1.34% -
ethereum $2920.497338 USD
3.04% -
tether $0.999775 USD
0.00% -
xrp $2.237324 USD
8.12% -
bnb $860.243768 USD
0.90% -
solana $138.089498 USD
5.43% -
usd-coin $0.999807 USD
0.01% -
tron $0.272801 USD
-1.53% -
dogecoin $0.150904 USD
2.96% -
cardano $0.421635 USD
1.97% -
hyperliquid $32.152445 USD
2.23% -
bitcoin-cash $533.301069 USD
-1.94% -
chainlink $12.953417 USD
2.68% -
unus-sed-leo $9.535951 USD
0.73% -
zcash $521.483386 USD
-2.87%
How does the Kraken API work for contract trading?
The Kraken Futures API enables automated trading of crypto perpetual contracts via REST and WebSocket endpoints, requiring separate API keys from futures.kraken.com.
Aug 13, 2025 at 11:35 am
Understanding the Kraken API for Contract Trading
The Kraken API provides a robust interface for interacting with Kraken’s financial products, including futures and perpetual contracts. While Kraken is traditionally known for its spot trading services, its expansion into derivatives through Kraken Futures—powered by the Crypto Facilities technology—enables users to trade perpetual futures contracts on various cryptocurrencies. The API allows traders to automate strategies, manage positions, and retrieve real-time market data. Access to contract trading via the API requires authentication using API keys, which are generated in the Kraken account settings. These keys grant permission to perform actions such as placing orders, checking balances, and retrieving position information.
To begin using the Kraken API for contract trading, you must first navigate to the Kraken Futures portal (futures.kraken.com), where you can generate a dedicated API key. Unlike spot trading, futures API access is managed separately. Once the key is created, it must be used with the futures.kraken.com base URL instead of the standard spot API endpoint. The API supports REST and WebSocket protocols, enabling both synchronous requests and real-time streaming of market data.
Authentication and API Key Setup
Before making any API calls, you must set up proper authentication. This involves generating an API key and secret through the Kraken Futures dashboard.
- Log in to your Kraken Futures account
- Navigate to Settings > API
- Click 'Create API Key'
- Assign permissions: ensure 'Order,' 'Query,' and 'Withdrawal' rights are enabled if needed
- Save the API key and private secret securely
Authentication for the Kraken Futures API uses HMAC-SHA256 signatures. Each request must include the following headers:
- APIKey: your generated public key
- Authent: the HMAC signature generated from the request data
- Content-Type: application/json
The signature is computed using the private secret, the request path, nonce (a strictly increasing number), and the request body. Libraries in Python, Node.js, and other languages can automate this process. For example, in Python, you can use the requests library along with hmac and hashlib to sign requests properly.
Retrieving Market and Contract Information
To trade contracts effectively, you must first understand the available instruments. The Kraken Futures API provides endpoints to list all tradable contracts.
- Send a GET request to https://futures.kraken.com/derivatives/api/v3/instruments
- The response includes symbol, margin requirements, funding rates, and maximum leverage
- Each contract symbol follows a naming convention such as PI_XBTUSD (Perpetual Inverse Bitcoin/USD) or PF_SOLUSD (Perpetual Futures Solana/USD)
You can also fetch real-time order book data using the endpoint:
- https://futures.kraken.com/derivatives/api/v3/tickersThis returns the latest bid, ask, last traded price, and open interest for each contract. For deeper market insights, use the orderbook endpoint with a specified symbol to retrieve full bid/ask depth.
Placing and Managing Contract Orders
Once you’ve identified a trading opportunity, you can place orders using the sendorder endpoint. This requires a POST request to:
- https://futures.kraken.com/derivatives/api/v3/sendorder
Required parameters include:
- orderType: such as lmt (limit), mkt (market), or post (post-only)
- symbol: the contract identifier (e.g., PI_ETHUSD)
- side: buy or sell
- size: the number of contracts
- limitPrice: required for limit orders
For example, to place a limit buy order for 100 contracts of PI_XBTUSD at $43,000:
{ 'orderType': 'lmt', 'symbol': 'PI_XBTUSD', 'side': 'buy', 'size': 100, 'limitPrice': 43000}After submission, the API returns an order ID, which you can use to monitor execution. To check active orders, use the openorders endpoint. To cancel an order, send a request to cancelorder with the order ID.
Monitoring Positions and Account Data
Real-time position tracking is essential for risk management. The positions endpoint returns all open futures positions:
- https://futures.kraken.com/derivatives/api/v3/positionsThe response includes entry price, current mark price, PNL (profit and loss), and liquidation price.
Account-level data, such as available margin, collateral balance, and leverage settings, can be retrieved via the accounts endpoint. This helps ensure you remain within safe margin thresholds. You can also adjust leverage for specific contracts using the setleverage endpoint, specifying the symbol and desired leverage value (e.g., 5x, 10x).
Using WebSocket for Real-Time Updates
For high-frequency trading or real-time monitoring, the Kraken Futures WebSocket API is more efficient than polling REST endpoints. Connect to:
- wss://futures.kraken.com/ws/v1
After connecting, subscribe to channels such as:
- ticker: real-time price updates
- book: order book changes
- executions: your trade fills
- positions: updates to your open positions
Each subscription requires a JSON payload. For example, to subscribe to the PI_XBTUSD ticker:
{ 'event': 'subscribe', 'feed': 'ticker', 'product_ids': ['PI_XBTUSD']}Messages are pushed in real time, reducing latency. WebSocket connections must be authenticated if accessing private data. This involves sending a login message with your API key, nonce, and signed token.
Frequently Asked Questions
Is the Kraken spot API compatible with futures trading?No. The Kraken spot API (api.kraken.com) does not support futures contracts. You must use the futures.kraken.com endpoints with a separately generated API key from the Kraken Futures platform.
What is the difference between PI_XBTUSD and PF_EURUSD contracts?PI_XBTUSD is an inverse perpetual contract denominated in Bitcoin, meaning PNL is settled in BTC. PF_EURUSD is a fiat-margined perpetual contract, where collateral and PNL are in USD, providing stable-value exposure.
Can I use the same API key for multiple strategies?Yes, but it’s recommended to create separate API keys for different bots or strategies. This enhances security and allows granular permission control, such as restricting one key to read-only access.
How often is funding paid on perpetual contracts?Funding is exchanged every 8 hours at 00:00 UTC, 08:00 UTC, and 16:00 UTC. The rate depends on the premium between the perpetual contract price and the underlying index. Long positions pay short positions if the rate is positive, and vice versa.
Disclaimer:info@kdj.com
The information provided is not trading advice. kdj.com does not assume any responsibility for any investments made based on the information provided in this article. Cryptocurrencies are highly volatile and it is highly recommended that you invest with caution after thorough research!
If you believe that the content used on this website infringes your copyright, please contact us immediately (info@kdj.com) and we will delete it promptly.
- Tether's USDT Dominance Surges on Solana Amidst DeFi Growth
- 2026-04-17 10:25:01
- Cardano, Polkadot, and Ethereum: Navigating the Evolving Blockchain Landscape
- 2026-04-17 10:10:01
- RLUSD's Calculated Cadence: Decoding the Minting and Burning Ballet
- 2026-04-17 12:35:02
- Bitcoin and Gold: Navigating Portfolio Performance in Volatile Times
- 2026-04-17 07:35:01
- Plasma Blockchain Hits $2 Billion TVL: Tether Wallet Integration Signals New Era for Stablecoins
- 2026-04-17 10:05:02
- NYC Crypto Beat: Altcoins Deeply Oversold, ETH, ADA, SUI Eyeing a Comeback
- 2026-04-17 10:10:01
Related knowledge
What is "Unrealized PNL" vs "Realized PNL"? (Profit Tracking)
Apr 16,2026 at 12:20am
Definition and Core Distinction1. Unrealized PNL refers to the floating profit or loss on open positions, calculated in real time using the current ma...
What is a "Basis" in futures trading? (Price Convergence)
Apr 16,2026 at 12:20pm
Definition of Basis in Futures Trading1. Basis refers to the numerical difference between the spot price of an underlying asset and its corresponding ...
How to increase account security for trading? (2FA & Safety)
Apr 16,2026 at 09:39am
Multi-Layer Authentication Protocols1. Google Authenticator remains the gold standard for second-factor verification across major exchanges including ...
How to read candlestick charts for futures? (Chart Basics)
Apr 13,2026 at 12:39am
Understanding Candlestick Anatomy1. Each candlestick displays four critical price levels: the opening price, closing price, highest price, and lowest ...
What is "Greeks" in crypto options/futures? (Advanced Metrics)
Apr 14,2026 at 11:20pm
Definition and Core Purpose of Greeks1. Greeks are quantitative measures used to assess how sensitive the price of a crypto option or futures contract...
How to set price alerts for contracts? (Notification Settings)
Apr 15,2026 at 12:59pm
Price Alert Configuration on Centralized Exchanges1. Launch the official trading application and authenticate using your registered credentials. 2. Na...
What is "Unrealized PNL" vs "Realized PNL"? (Profit Tracking)
Apr 16,2026 at 12:20am
Definition and Core Distinction1. Unrealized PNL refers to the floating profit or loss on open positions, calculated in real time using the current ma...
What is a "Basis" in futures trading? (Price Convergence)
Apr 16,2026 at 12:20pm
Definition of Basis in Futures Trading1. Basis refers to the numerical difference between the spot price of an underlying asset and its corresponding ...
How to increase account security for trading? (2FA & Safety)
Apr 16,2026 at 09:39am
Multi-Layer Authentication Protocols1. Google Authenticator remains the gold standard for second-factor verification across major exchanges including ...
How to read candlestick charts for futures? (Chart Basics)
Apr 13,2026 at 12:39am
Understanding Candlestick Anatomy1. Each candlestick displays four critical price levels: the opening price, closing price, highest price, and lowest ...
What is "Greeks" in crypto options/futures? (Advanced Metrics)
Apr 14,2026 at 11:20pm
Definition and Core Purpose of Greeks1. Greeks are quantitative measures used to assess how sensitive the price of a crypto option or futures contract...
How to set price alerts for contracts? (Notification Settings)
Apr 15,2026 at 12:59pm
Price Alert Configuration on Centralized Exchanges1. Launch the official trading application and authenticate using your registered credentials. 2. Na...
See all articles














