The SentiCrypt v2 API provides sentiment analysis data in JSON format. The API endpoint "https://api.senticrypt.com/v2/all.json" returns an array of objects, where each object represents sentiment analysis data for a specific date.
curl https://api.senticrypt.com/v2/history/2023-04-17.json
{
"date": "2023-04-17",
"price": 29615.0,
"volume": 2004.0,
"score1": -0.5078,
"score2": 0.1192,
"score3": 0.1719,
"count": 12,
"mean": -0.0722,
"sum": -0.8669
},
curl https://api.senticrypt.com/v2/all.json
[
{
"date": "2023-04-17",
"price": 29615.0,
"volume": 2004.0,
"score1": -0.5078,
"score2": 0.1192,
"score3": 0.1719,
"count": 12,
"mean": -0.0722,
"sum": -0.8669
},
{
"date": "2023-04-16",
"price": 30572.0,
"volume": 5278.0,
"score1": -0.1006,
"score2": 0.512,
"score3": 0.2561,
"count": 27,
"mean": 0.2225,
"sum": 6.0072
},
...
]