Bitvavo SDK for Python
Crypto starts with Bitvavo.
You use Bitvavo SDK for Python to buy, sell, and store over 200 digital assets on Bitvavo from inside your app.
To trade and execute your advanced trading strategies, Bitvavo SDK for Python is a wrapper that enables you to easily call every endpoint in Bitvavo API.
- Prerequisites - what you need to start developing with Bitvavo SDK for Python
- Get started - rapidly create an app and start trading with Bitvavo
- About the SDK - general information about Bitvavo SDK for Python
- API reference - information on the specifics of every parameter
This page shows you how to use Bitvavo SDK for Python with WebSockets.
For REST, see the REST readme.
Prerequisites
To start programming with Bitvavo SDK for Python you need:
-
Python3 installed on your development environment
If you are working on macOS, ensure that you have installed SSH certificates:
open /Applications/Python\ 3.12/Install\ Certificates.command
open /Applications/Python\ 3.12/Update\ Shell\ Profile.command
-
A Python app. Use your favorite IDE, or run from the command line
-
An API key and secret associated with your Bitvavo account
You control the actions your app can do using the rights you assign to the API key.
Possible rights are:
-
View: retrieve information about your balance, account, deposit and withdrawals
-
Trade: place, update, view and cancel orders
-
Withdraw: withdraw funds
Best practice is to not grant this privilege, withdrawals using the API do not require 2FA and e-mail confirmation.
Get started
Want to quickly make a trading app? Here you go:
-
Install Bitvavo SDK for Python
In your Python app, add Bitvavo SDK for Python from pypi.org:
python -m pip install python_bitvavo_api
If you installed from test.pypi.com
, update the requests library: pip install --upgrade requests
.
-
Create a simple Bitvavo implementation
Add the following code to a new file in your app:
from python_bitvavo_api.bitvavo import Bitvavo
import json
import time
class BitvavoImplementation:
api_key = "<Replace with your your API key from Bitvavo Dashboard>"
api_secret = "<Replace with your API secret from Bitvavo Dashboard>"
bitvavo_engine = None
bitvavo_socket = None
def __init__(self):
self.bitvavo_engine = Bitvavo({
'APIKEY': self.api_key,
'APISECRET': self.api_secret
})
self.bitvavo_socket = self.bitvavo_engine.newWebsocket()
self.bitvavo_socket.setErrorCallback(self.error_callback)
def error_callback(self, error):
print("Add your error message.")
def a_trading_strategy(self):
self.bitvavo_socket.ticker24h({}, self.a_trading_strategy_callback)
def a_trading_strategy_callback(self, response):
for market in response:
match market["market"]:
case "ZRX-EUR":
print("Eureka, the latest bid for ZRX-EUR is: ", market["bid"] )
case "a different market":
print("do something else")
case _:
print("Not this one: ", market["market"])
def order_placed_callback(self, response):
print("Order placed:", json.dumps(response, indent=2))
def wait_and_close(self):
limit = self.bitvavo_engine.getRemainingLimit()
try:
while (limit > 0):
time.sleep(0.5)
limit = self.bitvavo_engine.getRemainingLimit()
except KeyboardInterrupt:
self.bitvavo_socket.closeSocket()
if __name__ == '__main__':
bvavo = BitvavoImplementation()
bvavo.a_trading_strategy()
bvavo.wait_and_close()
-
Add security information
You must supply your security information to trade on Bitvavo and see your account information using the authenticate methods.
Replace the values of api_key
and api_secret
with your credentials from Bitvavo Dashboard.
You can retrieve public information such as available markets, assets and current market without supplying your key and secret.
However, unauthenticated calls have lower rate limits based on your IP address, and your account is blocked for longer if
you exceed your limit.
-
Run your app
- Command line warriors:
python3 <filename>
. - IDE heroes: press the big green button.
Your app connects to Bitvavo and returns a list the latest trade price for each market.
You use this data to implement your trading logic.
About the SDK
This section explains global concepts about Bitvavo SDK for Python.
Rate limit
Bitvavo uses a weight based rate limiting system.
Your app is limited to 1000 weight points per IP or API key per minute.
When you make a call to Bitvavo API, your remaining weight points are returned in the header of each REST request.
Websocket methods do not return your returning weight points, you track your remaining weight points with a call to:
limit = bitvavo.getRemainingLimit()
If you make more requests than permitted by the weight limit, your IP or API key is banned.
The rate weighting for each endpoint is supplied in the Bitvavo API documentation.
Requests
For all methods, required parameters are passed as separate values, optional parameters are passed as a dictionary.
Return parameters are in dictionary format: response['<key>'] = '<value>'
. However, as a limit order requires
more information than a market order, some optional parameters are required when you place an order.
Security
You must set your API key and secret for authenticated endpoints, public endpoints do not require authentication.