Using the Coinmarketcap API, you can quickly get live ticker information into your Excel spreadsheet for your favorite cryptocurrency. With the free API that is available, in this article we will look at how you can connect to this API with Excel and keep your data up to date. <h3>Obtaining a Coinmarketcap API Key</h3> You can register and sign up for an API key here <a href="https://pro.coinmarketcap.com/">https://pro.coinmarketcap.com/</a> The free key will allow you <ul> <li>9 market data endpoints</li> <li>10K call credit/mo</li> </ul> However, you will not get access to historical data. If you are using Excel 365 Beta channel and you have the <a href="https://youtu.be/Q7JZThH_kXs">STOCKHISTORY function</a> you can use this to get historical data for the larger cap coins. However, it is limited in the coins and the function is not yet available to everyone. Once you have registered, you will be able to access your developer’s dashboard. This contains the API key you will need. You will also find a quick link to the API documentation (<a href="https://coinmarketcap.com/api/documentation/v1/">https://coinmarketcap.com/api/documentation/v1/</a>) <img src="https://theexcelclub.com/wp-content/uploads/2020/09/1_connect-Excel-to-Coinmarketcap-API.png" alt="connect Excel to Coinmarketcap API" width="602" height="444" /><br/> <h2>Creating a URL endpoint to connect to with Excel</h2> The base of the API URL endpoint is <a href="https://pro-api.coinmarketcap.com/v1/">https://pro-api.coinmarketcap.com/v1/</a> We will add more to this URL so we can call call certain data. The API documentation lists the endpoints, but not all of them are available with the free API. <img src="https://theexcelclub.com/wp-content/uploads/2020/09/2_connect-Excel-to-Coinmarketcap-API.png" alt="connect Excel to Coinmarketcap API" width="602" height="421" /><br/> For our examples we will use the end point /cryptocurrency and for our endpoint paths we will look at /quotes/latest and /listings/latest <a href="https://pro-api.coinmarketcap.com/v1/cryptocurrency/quotes/latest">https://pro-api.coinmarketcap.com/v1/cryptocurrency/quotes/latest</a> will allow you access to current market information for 1 or more coins. The default price return is USD and you must use CONVERT to add other exchange rates. You can find full details on the parameters here <a href="https://coinmarketcap.com/api/documentation/v1/#operation/getV1CryptocurrencyQuotesLatest">https://coinmarketcap.com/api/documentation/v1/#operation/getV1CryptocurrencyQuotesLatest</a> The parameters allow you to basically filter and define what you want returned. For example, we want to return information for BTC,LRC,ADA. As these are coin symbols, we will use the symbol parameter at the end of the API URL. Each one separated with a comma. https://pro-api.coinmarketcap.com/v1/cryptocurrency/quotes/latest?symbol=BTC,LRC,ADA If you need to call more than a few listings as you would do with /quotes/latest, you can use /listing/latest. This will return a full list, by default the top 100 coins by ranking on coinmarketcap. <a href="https://pro-api.coinmarketcap.com/v1/cryptocurrency/listings/latest">https://pro-api.coinmarketcap.com/v1/cryptocurrency/listings/latest</a> By adding different paths and parameter we can filter this list as required. You can find all the details of the parameter in the API documentation. For Example, this URL will return the to 100 showing in BTC. <a href="https://pro-api.coinmarketcap.com/v1/cryptocurrency/listings/latest?convert=btc">https://pro-api.coinmarketcap.com/v1/cryptocurrency/listings/latest?convert=btc</a> And this URL will return only the coins with the tag for Defi <a href="https://pro-api.coinmarketcap.com/v1/cryptocurrency/listings/latest?tag=defi">https://pro-api.coinmarketcap.com/v1/cryptocurrency/listings/latest?tag=defi</a> Once we have created our API endpoints, we can then use these to connect Excel to Coinmarketcap data. <h3>Connecting Excel to the Coinmarketcap API</h3> <ol> <li>From the data ribbon, select From Web which can be found in the Get and Transform group of commands. This will open a From Web setup box.</li> <li>Select Advanced</li> <li>Enter the API URL endpoint to the first URL parts box<img src="https://theexcelclub.com/wp-content/uploads/2020/09/3_connect-Excel-to-Coinmarketcap-API.png" alt="connect Excel to Coinmarketcap API" width="602" height="395" /><br/></li> <li>In the HTTP request header parameters(optional) first box enter X-CMC_PRO_API_KEY (you will find this on the Authentication section of the API documentation)</li> <li>In the HTTP request header parameters(optional) second box enter your API Key and press OK.<img src="https://theexcelclub.com/wp-content/uploads/2020/09/4_connect-Excel-to-Coinmarketcap-API.png" alt="connect Excel to Coinmarketcap API" width="602" height="377" /><br/></li> <li>Excel will connect to the API and open up the Power Query window. The data is returned in JSON format and we must now extract the data. To learn more about working with JSON in Excel you can <a href="https://theexcelclub.com/how-to-parse-custom-json-data-using-excel/">read this article</a>.</li> <li>Select the row for Data List and click on the word list<img src="https://theexcelclub.com/wp-content/uploads/2020/09/5_connect-Excel-to-Coinmarketcap-API.png" alt="connect Excel to Coinmarketcap API" width="296" height="270" /><br/></li> <li>This will expand the lists of data. Select To Table from the ribbon and select ok for the default settings in the To table option box.</li> </ol> <img src="https://theexcelclub.com/wp-content/uploads/2020/09/6_connect-Excel-to-Coinmarketcap-API.png" alt="connect Excel to Coinmarketcap API" width="602" height="366" /><br/> <ol start="9"> <li>Next expand the records by clicking on the column header. Select the columns you want to import and deselect Use original column name as prefix and press ok<img src="https://theexcelclub.com/wp-content/uploads/2020/09/7_connect-Excel-to-Coinmarketcap-API.png" alt="connect Excel to Coinmarketcap API" width="526" height="452" /><br/></li> <li>The new columns of data will expand. However, the quote field will still be a record that we must also expand<img src="https://theexcelclub.com/wp-content/uploads/2020/09/8_connect-Excel-to-Coinmarketcap-API.png" alt="connect Excel to Coinmarketcap API" width="579" height="308" /><br/></li> <li>Click on the expander in the column header for quote to expand the record.</li> </ol> <img src="https://theexcelclub.com/wp-content/uploads/2020/09/9_connect-Excel-to-Coinmarketcap-API.png" alt="connect Excel to Coinmarketcap API" width="546" height="315" /><br/> <ol start="12"> <li>This opens another record which we much expand again. Click on the expander in the column header and select the columns you want to import<img src="https://theexcelclub.com/wp-content/uploads/2020/09/10_connect-Excel-to-Coinmarketcap-API.png" alt="connect Excel to Coinmarketcap API" width="580" height="392" /><br/></li> <li>This will import all the selected columns</li> <li>Carry out any required transformation steps, most notably ensuring all the data types are correct before you load to Excel.</li> <li>From the home Ribbon select Close and Load to load the data as a table in Excel.</li> </ol> <img src="https://theexcelclub.com/wp-content/uploads/2020/09/11_connect-Excel-to-Coinmarketcap-API.png" alt="connect Excel to Coinmarketcap API" width="480" height="445" /><br/> <h2>Refresh the data from Coinmarketcap API in Excel</h2> Once all the tables have been loaded into Excel, we can keep these up to date with the latest information. To update the data, from the data ribbon, select Refresh All. <img src="https://theexcelclub.com/wp-content/uploads/2020/09/12_connect-Excel-to-Coinmarketcap-API.png" alt="connect Excel to Coinmarketcap API" width="566" height="123" /><br/> <h2>Conclusion</h2> Connecting to Coinmarketcap API with Excel is a great way to ensure you have the latest pricing information for Bitcoin and your favorite cryptocurrencies. This article was brief to show you the steps involved in connecting to the API and getting the ticker and current information into Excel. To look further at the other API points listed in this article and to get some tips on the data transformations required, do check out this video. <center><strong>SIGN UP FOR OUR NEWSLETTER TODAY – GET EXCEL TIPS TRICKS AND LEARN AND EARN ACTIVITIES TO YOUR INBOX</strong></center></h4> <a role="button" href="https://theexcelclub.newzenler.com/f/email-signup">SIGN UP</a> <center>Community Invitation</center></h3> <center>- <a href="https://peakd.com/c/hive-102332/about">Excel For All</a> -</center></h3> <center>Decentralized and tokenized</center></h3> <center><a href="https://peakd.com/c/hive-102332/about">Join today</a></center></h3> https://youtu.be/_5sXO9H6k6I <h2>Over to you</h2> What coinmarketcap end point do you like to use and why? Do you have any feedback on this article and video? If so, don't be shy and drop a comment below <section data-id="3312ba9" data-element_type="section"> <p><center><strong>Do you want to start collecting rewards quickly for learning Excel? Then you should try:</strong></center></p> <center><a href="https://theexcelclub.com/excel-learn-earn/">10+ Excel Learn and Earn Activities YOU can do Today</a></center></p> <center><strong>SIGN UP FOR OUR NEWSLETTER TODAY – GET EXCEL TIPS TRICKS AND LEARN AND EARN ACTIVITIES TO YOUR INBOX</strong></center></h4> <a role="button" href="https://theexcelclub.newzenler.com/f/email-signup">SIGN UP</a> </section> <br /><center><hr/><em>Cross posted from my blog with <a href='https://wordpress.org/plugins/steempress/'>SteemPress</a> : https://theexcelclub.com/how-to-connect-excel-to-coinmarketcap-api/ </em><hr/></center>
author | theexcelclub | ||||||
---|---|---|---|---|---|---|---|
permlink | howtoconnectexceltocoinmarketcapapi-swq06a23kk | ||||||
category | excel | ||||||
json_metadata | {"community":"steempress","app":"peakd/2020.08.3","tags":["excel","steemleo","stemgeeks","tutorials","coding"],"canonical_url":"https://theexcelclub.com/how-to-connect-excel-to-coinmarketcap-api/","image":["https://theexcelclub.com/wp-content/uploads/2020/09/1_connect-Excel-to-Coinmarketcap-API.png","https://theexcelclub.com/wp-content/uploads/2020/09/2_connect-Excel-to-Coinmarketcap-API.png","https://theexcelclub.com/wp-content/uploads/2020/09/3_connect-Excel-to-Coinmarketcap-API.png","https://theexcelclub.com/wp-content/uploads/2020/09/4_connect-Excel-to-Coinmarketcap-API.png","https://theexcelclub.com/wp-content/uploads/2020/09/5_connect-Excel-to-Coinmarketcap-API.png","https://theexcelclub.com/wp-content/uploads/2020/09/6_connect-Excel-to-Coinmarketcap-API.png","https://theexcelclub.com/wp-content/uploads/2020/09/7_connect-Excel-to-Coinmarketcap-API.png","https://theexcelclub.com/wp-content/uploads/2020/09/8_connect-Excel-to-Coinmarketcap-API.png","https://theexcelclub.com/wp-content/uploads/2020/09/9_connect-Excel-to-Coinmarketcap-API.png","https://theexcelclub.com/wp-content/uploads/2020/09/10_connect-Excel-to-Coinmarketcap-API.png","https://theexcelclub.com/wp-content/uploads/2020/09/11_connect-Excel-to-Coinmarketcap-API.png","https://theexcelclub.com/wp-content/uploads/2020/09/12_connect-Excel-to-Coinmarketcap-API.png"],"format":"markdown","links":["https://pro.coinmarketcap.com/","https://youtu.be/Q7JZThH_kXs","https://coinmarketcap.com/api/documentation/v1/","https://pro-api.coinmarketcap.com/v1/","https://pro-api.coinmarketcap.com/v1/cryptocurrency/quotes/latest","https://coinmarketcap.com/api/documentation/v1/#operation/getV1CryptocurrencyQuotesLatest","https://pro-api.coinmarketcap.com/v1/cryptocurrency/quotes/latest?symbol=BTC,LRC,ADA","https://pro-api.coinmarketcap.com/v1/cryptocurrency/listings/latest","https://pro-api.coinmarketcap.com/v1/cryptocurrency/listings/latest?convert=btc","https://pro-api.coinmarketcap.com/v1/cryptocurrency/listings/latest?tag=defi"]} | ||||||
created | 2020-09-04 01:35:00 | ||||||
last_update | 2020-09-04 09:44:24 | ||||||
depth | 0 | ||||||
children | 9 | ||||||
last_payout | 2020-09-11 01:35:00 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 1.908 HBD | ||||||
curator_payout_value | 1.994 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 9,870 | ||||||
author_reputation | 49,417,421,433,400 | ||||||
root_title | "How to connect Excel to Coinmarketcap API" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 99,438,683 | ||||||
net_rshares | 15,923,855,058,805 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
onealfa | 0 | 85,571,056,063 | 4.43% | ||
hedge-x | 0 | 190,774,847,599 | 100% | ||
arcange | 0 | 75,686,122,566 | 2% | ||
demotruk | 0 | 3,464,650,226,963 | 100% | ||
raphaelle | 0 | 2,065,708,575 | 2% | ||
anarcho-andrei | 0 | 2,320,401,169 | 7.5% | ||
abh12345 | 0 | 636,373,315,763 | 20% | ||
zorg67 | 0 | 551,205,100 | 100% | ||
steemitboard | 0 | 3,243,971,281 | 2% | ||
markkujantunen | 0 | 67,680,848,163 | 61% | ||
travelnepal | 0 | 1,649,943,475 | 12.5% | ||
alphacore | 0 | 8,791,993,890 | 0.65% | ||
paulag | 0 | 1,247,899,741,447 | 100% | ||
spectrumecons | 0 | 1,946,637,360,013 | 50% | ||
guchtere | 0 | 2,713,743,061 | 12.5% | ||
kiokizz | 0 | 5,417,491,537 | 65% | ||
edkarnie | 0 | 258,571,445,990 | 100% | ||
xlisto | 0 | 47,981,738,047 | 100% | ||
approximate | 0 | 1,494,569,238 | 65% | ||
dernan | 0 | 849,580,984 | 100% | ||
synrg | 0 | 305,724,388,723 | 100% | ||
tykee | 0 | 5,715,604,924 | 50% | ||
jasonbu | 0 | 58,529,276,290 | 27.5% | ||
kiobot | 0 | 510,084,317 | 65% | ||
zyx066 | 0 | 32,828,241,590 | 12.5% | ||
bashadow | 0 | 56,161,647,641 | 25% | ||
niallon11 | 0 | 9,989,395,806 | 1.25% | ||
jlsplatts | 0 | 8,614,479,844 | 1% | ||
meno | 0 | 218,687,800,552 | 12.5% | ||
ankapolo | 0 | 2,933,671,277 | 5% | ||
vegoutt-travel | 0 | 23,421,864,060 | 40% | ||
dkid14 | 0 | 494,254,942,335 | 100% | ||
angelro | 0 | 1,009,980,204 | 12.5% | ||
socent | 0 | 1,464,838,192 | 15% | ||
coyotelation | 0 | 2,366,826,408 | 10% | ||
bluefinstudios | 0 | 722,063,094 | 1.25% | ||
pechichemena | 0 | 3,248,514,502 | 5% | ||
mytechtrail | 0 | 41,030,508,538 | 15% | ||
helpie | 0 | 63,345,211,470 | 25% | ||
kamchore | 0 | 169,278,416,661 | 100% | ||
markaustin | 0 | 791,739,923 | 5% | ||
soulturtle | 0 | 620,695,242 | 5% | ||
nerdtopiade | 0 | 3,240,467,311 | 9.07% | ||
mountainjewel | 0 | 1,402,880,323 | 0.5% | ||
slacktmusic | 0 | 1,713,539,306 | 12.5% | ||
mmmmkkkk311 | 0 | 271,835,931,662 | 3.5% | ||
fragmentarion | 0 | 20,538,838,947 | 100% | ||
bennettitalia | 0 | 6,136,676,825 | 6.25% | ||
tryskele | 0 | 3,790,502,443 | 4% | ||
bala41288 | 0 | 32,636,741,364 | 10% | ||
philnewton | 0 | 747,606,209 | 10% | ||
jakeeyexe | 0 | 928,089,693 | 50% | ||
tobias-g | 0 | 50,053,081,584 | 15% | ||
icuz | 0 | 65,835,759 | 100% | ||
steemflagrewards | 0 | 450,009,992,597 | 100% | ||
warpedpoetic | 0 | 10,929,473,250 | 25% | ||
hazem91 | 0 | 2,931,099,001 | 3.75% | ||
zipporah | 0 | 12,768,726,835 | 5% | ||
doomsdaychassis | 0 | 16,640,712,986 | 25% | ||
jeronimorubio | 0 | 72,233,320,329 | 25% | ||
bil.prag | 0 | 87,226,794,439 | 26% | ||
schlafhacking | 0 | 326,729,833,765 | 100% | ||
kanrat | 0 | 3,441,928,683 | 6.87% | ||
racibo | 0 | 3,152,658,245 | 20% | ||
big-m | 0 | 589,964,613 | 6.25% | ||
gadrian | 0 | 52,926,449,818 | 35% | ||
tonimontana | 0 | 1,203,519,659 | 41.47% | ||
veckinon | 0 | 711,342,579 | 12.5% | ||
camuel | 0 | 43,978,465,412 | 25% | ||
javicuesta | 0 | 775,347,378 | 25% | ||
bembelmaniac | 0 | 2,154,933,009 | 50% | ||
kbr | 0 | 591,852,851 | 6.25% | ||
enforcer48 | 0 | 117,970,866,085 | 15% | ||
free-reign | 0 | 4,539,147,903 | 3.75% | ||
darrenclaxton | 0 | 574,137,863 | 2.5% | ||
frejafri | 0 | 941,495,636 | 2.5% | ||
kantos | 0 | 882,459,427 | 12.5% | ||
cesky | 0 | 108,836,741,117 | 10% | ||
blewitt | 0 | 43,911,557,609 | 1.75% | ||
cmplxty | 0 | 153,205,580,889 | 51% | ||
bflanagin | 0 | 16,601,490,639 | 12.5% | ||
melor9 | 0 | 975,988,817 | 12.5% | ||
lillywilton | 0 | 3,544,335,685 | 20% | ||
dalz | 0 | 125,141,647,109 | 40% | ||
zainenn | 0 | 15,710,235,594 | 12.5% | ||
jk6276 | 0 | 0 | 1% | ||
voxmortis | 0 | 3,088,784,670 | 1.37% | ||
gordonramzy | 0 | 606,737,620 | 100% | ||
theexcelclub | 0 | 231,775,488,694 | 100% | ||
jessica.steem | 0 | 576,550,339 | 100% | ||
oakshieldholding | 0 | 256,979,142 | 70% | ||
laissez-faire | 0 | 91,092,555 | 100% | ||
admiralbot | 0 | 5,705,910,057 | 100% | ||
balticbadger | 0 | 5,528,014,194 | 25% | ||
deepsouthpiddlin | 0 | 3,659,144,574 | 20% | ||
eonwarp | 0 | 2,260,606,784 | 100% | ||
ancientknowled3 | 0 | 1,821,253,089 | 2.5% | ||
elkaos | 0 | 1,605,149,326 | 50% | ||
bluerobo | 0 | 80,522,298,543 | 100% | ||
kaldewei | 0 | 1,306,472,290 | 6.87% | ||
sm-lvl1 | 0 | 714,357,116 | 65% | ||
princessamber | 0 | 1,164,817,285 | 50% | ||
sm-starter-beta | 0 | 573,121,985 | 65% | ||
ctime | 0 | 746,064,909,387 | 5% | ||
helpie-caster | 0 | 6,457,162,319 | 13.75% | ||
ghostdylan | 0 | 1,169,481,827 | 50% | ||
hanke | 0 | 5,700,333,519 | 100% | ||
darhainer | 0 | 738,336,062 | 65% | ||
limka | 0 | 355,279,848 | 100% | ||
samuel.steem | 0 | 1,002,125,915 | 100% | ||
paolo.senegal | 0 | 1,450,695,874 | 100% | ||
memehub | 0 | 50,591,874,981 | 100% | ||
gadrian-sp | 0 | 1,699,308,959 | 35% | ||
scholaris | 0 | 69,822,706,912 | 25% | ||
aninsidejob | 0 | 5,818,408,981 | 100% | ||
quantumdeveloper | 0 | 2,515,242,510 | 50% | ||
maruskina | 0 | 33,557,548,859 | 50% | ||
nalacanecorso | 0 | 1,231,043,605 | 100% | ||
ssiena | 0 | 8,033,594,052 | 51% | ||
babytarazkp | 0 | 5,358,159,502 | 85% | ||
abh12345.stem | 0 | 497,891,808 | 70% | ||
btc4breackfast | 0 | 1,887,693,771 | 100% | ||
espni | 0 | 714,080,608 | 65% | ||
stem.alfa | 0 | 831,948,613 | 100% | ||
vxc.stem | 0 | 0 | 41.47% | ||
urtrailer | 0 | 1,207,972,505 | 0.25% | ||
stemd | 0 | 322,590,393 | 100% | ||
joshmania | 0 | 6,095,608,883 | 6.25% | ||
abh12345.medi | 0 | 21,778,106 | 20% | ||
axel-blaze | 0 | 1,569,652,138,149 | 100% | ||
yggdrasil.laguna | 0 | 333,251,053 | 70% | ||
pecoshop | 0 | 1,899,391,030 | 100% | ||
stem.curate | 0 | 958,473,094 | 100% | ||
stemisaria | 0 | 1,922,731,587 | 100% | ||
hjmarseille | 0 | 10,031,214,841 | 70% | ||
boomalex | 0 | 2,579,615,653 | 100% | ||
dec-market | 0 | 1,838,484,603 | 65% | ||
machete9595 | 0 | 2,487,131,594 | 100% | ||
ragequitter | 0 | 709,461,455 | 65% | ||
fengchao | 0 | 2,354,415,826 | 2% | ||
blue-witness | 0 | 655,255,613 | 100% | ||
gitplait | 0 | 77,695,523,738 | 100% | ||
captainhive | 0 | 776,123,681,238 | 40% | ||
peterpanpan | 0 | 99,297,215,906 | 100% | ||
quello | 0 | 63,422,745,962 | 15% | ||
meppij | 0 | 376,966,242,613 | 100% | ||
ninnu | 0 | 12,651,244,335 | 15.25% | ||
splinterstats | 0 | 776,490,688 | 65% |
Really cool here Paula, thanks! I wonder, could we use this to grab hive data or is it too far down the list? I wouldn’t mind trying my hand at setting it up. I might have missed it but could we save snippets of the data so we can get daily prices saved? It would be fun to do a bit of visualization with that type of info!
author | cmplxty |
---|---|
permlink | re-theexcelclub-202093t214827876z |
category | excel |
json_metadata | {"tags":["excel","steemleo","stemgeeks","tutorials","coding"],"app":"ecency/3.0.3-mobile","format":"markdown+html"} |
created | 2020-09-04 01:48:27 |
last_update | 2020-09-04 01:48:27 |
depth | 1 |
children | 6 |
last_payout | 2020-09-11 01:48:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 325 |
author_reputation | 778,195,860,003,924 |
root_title | "How to connect Excel to Coinmarketcap API" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,438,822 |
net_rshares | 277,997,313 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
oakshieldholding | 0 | 75,681,574 | 33% | ||
abh12345.stem | 0 | 202,315,739 | 33% |
The answer is yes, there are Hive API,s but I have not looked at them. There is also the SQL which is even easier to get data from, however you have to pay a sub for the SQL data on hive. From the hive SQL you can chart and track all movement from the internal market, in which the price feed comes from the witnesses and exchanges. I use to do posts on it.
author | theexcelclub |
---|---|
permlink | re-cmplxty-qg4ox8 |
category | excel |
json_metadata | {"tags":["excel"],"app":"peakd/2020.08.3"} |
created | 2020-09-04 09:55:57 |
last_update | 2020-09-04 09:55:57 |
depth | 2 |
children | 5 |
last_payout | 2020-09-11 09:55:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 360 |
author_reputation | 49,417,421,433,400 |
root_title | "How to connect Excel to Coinmarketcap API" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,443,455 |
net_rshares | 275,527,269 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
oakshieldholding | 0 | 74,870,852 | 33% | ||
abh12345.stem | 0 | 200,656,417 | 33% |
Oh you have to pay who for the hive data? That’s kind of a pain!
author | cmplxty |
---|---|
permlink | re-theexcelclub-202094t64116742z |
category | excel |
json_metadata | {"tags":["excel"],"app":"ecency/3.0.3-mobile","format":"markdown+html"} |
created | 2020-09-04 10:41:18 |
last_update | 2020-09-04 10:41:18 |
depth | 3 |
children | 4 |
last_payout | 2020-09-11 10:41:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 64 |
author_reputation | 778,195,860,003,924 |
root_title | "How to connect Excel to Coinmarketcap API" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,443,959 |
net_rshares | 0 |
Upvoted by GITPLAIT! We have a curation trial on Hive.vote. you can earn a passive income by delegating to @gitplait We share 80 % of the curation rewards with the delegators. To delegate, use the links or adjust 10HIVE, 20HIVE, 50HIVE, 100HIVE, 200HIVE, 500HIVE, 1,000HIVE, 10,000HIVE, 100,000HIVE Join the Community and chat with us on Discord let’s solve problems & build together.
author | gitplait |
---|---|
permlink | qg5edp |
category | excel |
json_metadata | {"users":["gitplait"],"app":"hiveblog/0.1"} |
created | 2020-09-04 19:06:00 |
last_update | 2020-09-04 19:06:00 |
depth | 1 |
children | 0 |
last_payout | 2020-09-11 19:06:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 387 |
author_reputation | 911,220,543,569 |
root_title | "How to connect Excel to Coinmarketcap API" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,451,804 |
net_rshares | 0 |
Congratulations @theexcelclub! You have completed the following achievement on the Hive blockchain and have been rewarded with new badge(s) : <table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@theexcelclub/replies.png?202009040157"></td><td>You got more than 500 replies. Your next target is to reach 600 replies.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@theexcelclub) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Do not miss the last post from @hivebuzz:** <table><tr><td><a href="/hivebuzz/@hivebuzz/feedback-from-the-september-1st-hive-power-up-day"><img src="https://images.hive.blog/64x128/https://i.imgur.com/zHjYI1k.jpg"></a></td><td><a href="/hivebuzz/@hivebuzz/feedback-from-the-september-1st-hive-power-up-day">Feedback from the September 1st Hive Power Up Day</a></td></tr></table>
author | hivebuzz |
---|---|
permlink | hivebuzz-notify-theexcelclub-20200904t022829000z |
category | excel |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2020-09-04 02:28:27 |
last_update | 2020-09-04 02:28:27 |
depth | 1 |
children | 0 |
last_payout | 2020-09-11 02:28:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,013 |
author_reputation | 370,005,256,585,291 |
root_title | "How to connect Excel to Coinmarketcap API" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 99,439,232 |
net_rshares | 0 |