This open source project was created to give an understanding of the Bittrex Rest API v1.1/v3.0 in pearl language. The sample file shows the methods in accordance with the official specification. Working with the software product implies a basic understanding of the basics of programming in perl and API.
- Installed linux OS (ubuntu/centos etc)
- Latest Perl with modules:
- Data::Dumper
- JSON
- Digest::SHA
- REST::Client
- Time::HiRes
- Installed git
- Verified Bittrex Account with activated Two-Factor Authentication
- Synchronized time on your host computer
- Internet access to Bittrex API endpoint https://api.bittrex.com/v3 / https://api.bittrex.com/api/v1.1
sudo apt update
sudo apt upgrade
sudo apt install perl librest-client-perl libjson-perl libdata-dumper-concise-perl libdigest-sha-perl libtime-hr-perl
git clone https://github.com/dream-hunter/bittrex-rest-api.git
cd bittrex-rest-api
perl APIv3sample.pl
perl APIv11sample.pl
If you wanna help my project, send your donations to the following wallets:
BTC: 17kZJHjouZqLmMwntg2M6zzdEW3Jivx79o
ETH: 0xda1be63336b49e25201d2f406f01b1989f6146c1
- Tests and fixes a possible bugs
- Writing free bot
- Improving stability and performance
2023/01/10 Following bittrex api changelog for 01/19/2022 added "GET /account/fees/fiat" method in APIv3sample.pl (example). Updates into main library are not required.
2021/10/20 Added new features announced in Bittrex Changelog
2020/09/01 Minor fixes
2020/08/22 Some minor update for easier use
2020/08/13 Fixed check for json_decode to avoid program termination if it fails.
2020/06/09 All API v3.0 subroutines moved from sample file to BittrexAPIv3.pm
2020/06/08 Added module for REST API v1.1
2020/06/05 Project created