Skip to content

Instantly share code, notes, and snippets.

@nrese
Last active June 5, 2020 17:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nrese/1046fb62af51ff9901b3922d722804e5 to your computer and use it in GitHub Desktop.
Save nrese/1046fb62af51ff9901b3922d722804e5 to your computer and use it in GitHub Desktop.
import urllib.request
url = "https://api.lunarcrush.com/v2?data=global&key={API_KEY_HERE}&data_points=24"
print(urllib.request.urlopen(url).read())
{
"config": {
"data": "global",
"data_points": 24
},
"usage": {
"day": 17,
"month": 105
},
"data": {
"time_24h": 38190571200,
"volume_24h": 47918622580,
"market_cap_24h": 6370595770094,
"url_shares_24h": 64262,
"unique_url_shares_24h": 30576,
"reddit_posts_24h": 2349,
"reddit_posts_score_24h": 15494,
"reddit_comments_24h": 2231,
"reddit_comments_score_24h": 9900,
"tweets_24h": 173057,
"tweet_spam_24h": 25550,
"tweet_followers_24h": 565917414,
"tweet_quotes_24h": 3356,
"tweet_retweets_24h": 59833,
"tweet_replies_24h": 19721,
"tweet_favorites_24h": 146551,
"tweet_sentiment1_24h": 4083,
"tweet_sentiment2_24h": 8657,
"tweet_sentiment3_24h": 31565,
"tweet_sentiment4_24h": 115269,
"tweet_sentiment5_24h": 13483,
"tweet_sentiment_impact1_24h": 19062932,
"tweet_sentiment_impact2_24h": 35121657,
"tweet_sentiment_impact3_24h": 74759163,
"tweet_sentiment_impact4_24h": 409357619,
"tweet_sentiment_impact5_24h": 27845504,
"social_score_24h": 566236531,
"social_volume_24h": 208247,
"average_sentiment_24h": 89.10000000000002,
"news_24h": 34,
"medium_24h": 41,
"youtube_24h": 41,
"btc_dominance_24h": 1482.4002299663648,
"btc_market_cap_24h": 4106027897210,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment