![]() |
VOOZH | about |
Let us see how to fetch history price in USD or BTC, traded volume and market cap for a given date range using Santiment API and storing the data into MongoDB collection.
Python is a mature language and getting much used in the Cryptocurrency domain. MongoDB is a NoSQL database getting paired with Python in many projects which helps to hold details that got retrieved from Python Programs. PyMongo is a Python distribution containing tools for working with MongoDB and it is a very convenient way to work with MongoDB from Python to do Create/Update/Delete/Read operations easily.
Let us see the code in using Santiment's API in getting cryptocurrency prices for a given date range
Few Examples of cryptocurrency are :
bitcoin ethereum ripple bitcoin-cash litecoin eos cardano stellar neo iota
Example :
For the following input
For bitcoin above API call, returns data as below
Similarly for ethereum also, we will get value
Retrieved value has to be stored in MongoDB
Database : geeksforgeeks
Collection : Coll_santiment_Price
As we are going to take for 7 days of data, it has to be given in a loop
In MongoDB, _id is the default column which can be got by ObjectId(). Our process has multiple rows where each and every row is identified by means of "cryptocurrencyname" and "time". In our code, we are having it as "id" and "time" respectively.
Let "Coll_santiment_Price" be created with 3 columns namely _id, id and time first. Then upon successful execution of API call, for the id and time, let API call output namely (verify column name from bitcoinprice.png) 'priceBtc', 'priceUsd','volume' and 'marketcap' are updated in a loop.
Code Implementation in Python
Sample Output : (For bitcoin)
Sample Output : (For Ethereum)
Santiment API calls for getting prices are very much used across cryptocurrency projects. As we are getting historical data, for data analytics, this is very much useful. Moreover, it is freely accessible and hence any beginner-level projects can use it without any issues. Price variations are not much varying and hence well set for demo and small scale projects.