Import CoinGecko Data to Google Sheets

  Рет қаралды 50,718

mixed analytics

mixed analytics

Күн бұрын

Пікірлер: 188
@Vlad-ld9cu
@Vlad-ld9cu 3 жыл бұрын
Just wanted to say thank you, I understand the API doc much better now.
@mixedanalytics
@mixedanalytics 3 жыл бұрын
You're very welcome :)
@mylene83515
@mylene83515 2 жыл бұрын
Taiwanese here and thank you for making a video!
@mixedanalytics
@mixedanalytics 2 жыл бұрын
Our pleasure!
@rory88smit
@rory88smit 2 жыл бұрын
i cant believe i struggled though this so much... but your walkthrough is really good thank you
@mixedanalytics
@mixedanalytics 2 жыл бұрын
Glad I could help!
@chrisbatten3647
@chrisbatten3647 3 жыл бұрын
Thanks for the awesome vid, great work. Definitely the easiest way to locate data for the most obscure coins.
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Glad you enjoyed!
@chrismauerer
@chrismauerer 3 жыл бұрын
Amazing video! So helpful
@mixedanalytics
@mixedanalytics 3 жыл бұрын
So glad!
@lteredcarbon
@lteredcarbon 3 жыл бұрын
Thank you my friend! Great job!
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Cheers! :)
@phildeeha
@phildeeha 3 жыл бұрын
Awesome video and great explanations! Thank you so much!
@mixedanalytics
@mixedanalytics 3 жыл бұрын
You're very welcome!
@szalonypasterz
@szalonypasterz 3 жыл бұрын
many thanks for simple introduction!
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Glad it was helpful!
@chrisder1814
@chrisder1814 3 ай бұрын
hello what is the difference between this method and the abscript method and also the import functions? is data synchronization done in real time?
@verbon5434
@verbon5434 3 жыл бұрын
Great instructional video. Thank.
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Glad it was helpful!
@Arnaud_duquesne
@Arnaud_duquesne 3 жыл бұрын
so useful, cheers for the help man!
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Glad it helped!
@blsilva10
@blsilva10 2 жыл бұрын
Awesome! Thank you so much!
@mixedanalytics
@mixedanalytics 2 жыл бұрын
Thank you Bruno :)
@automatictruth6488
@automatictruth6488 3 жыл бұрын
perfect brilliant. couple questions; 1. a couple days have passed the data has changed, how are the prices updated? on a quick [F5] (up to 8 times per 24 hours?) 2. is there a way to make the data enter the sheet virtically rather than horizontally? / or is the best way to get around this to link the data onto another sheet? (And hide the messy one?)
@automatictruth6488
@automatictruth6488 3 жыл бұрын
Also my Guy if you do respond to this comment please: when i update the running, all the prices move all over the place, bitcoin replacing etheriums price for example. what is happening?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
@@automatictruth6488 Hey! -Data is updated whenever you hit the "Run" button, so yes up to 8x in 24 hours -I always have my raw data sheet from API Connector than pipe it over to another sheet (and yes hide the messy one if you want ;), see next point: -Yeh, that does happen cause by default it sorts by market_cap, which constantly changes. You can fix this by appending &order=id_desc on the end of your API URL. This is also why the 2-sheet trick is so critical, cause you can use VLOOKUP() to get around this in cases where you can't sort the returned data. Let me know if all that helps :)
@getndavan
@getndavan 3 жыл бұрын
Awesome video! This is really going to help me track everything. Is there a way to have the information run vertically, rather than horizontally? Cheers!
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Sure! You'd still have to port the data in horizontally, but you could flip it into a new sheet using the =TRANSPOSE(Infoon3!A1:D2) function for example :)
@Maertese
@Maertese 3 жыл бұрын
Thanks. Unfortunately the order of the data keeps changing with reloads so you can't directly reference it in a portfolio to calculate profit or loss. I only collected current prices so the names and prices were in rows, a row of names, and row of prices on a separate sheet called APIs. Therefore I had to use HLOOKUP which looks like this example for Bitcoin =HLOOKUP("bitcoin » usd",APIs!A1:R2,2,false). Google is buggy when it comes to copy/paste of the function, so much so that I'm thinking of going back to Excel.
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Yep, that's exactly the logic I use to get around it as well, except that I use VLOOKUP with the currencies I am interested in following (I'm assuming you are using the /markets endpoint). Another option you have is to check out the "order" query parameter. By default it's set to market cap descending, but you could change it to id_asc or id_desc to lock the index. If you have any other questions feel free to check out our r/api_connector for more community-provided solutions :)
@Maertese
@Maertese 3 жыл бұрын
@@mixedanalytics Thanks! I was using simple/price which didn't have the asc/desc choices.
@247earnings2
@247earnings2 Жыл бұрын
What would be the "formula" be to get all of the crypto names and prices in one go? Is this information updated in Google Sheets as prices change
@MlleLauraKa
@MlleLauraKa 2 жыл бұрын
Very Much appreciated thank you That's great work ;) !!!
@mixedanalytics
@mixedanalytics 2 жыл бұрын
You're welcome!
@chrisder1814
@chrisder1814 Ай бұрын
hello what is the difference between this module and appscript?
@SpirosZochios
@SpirosZochios 3 жыл бұрын
Hi, thanks for the tutorial. I try to create a macro for updating the crypto prices to make it faster, but I keep getting an error saying: ''ReferenceError: sidebarListRequests is not defined'' Any idea how to fix it or how to make a working macro?
@SpirosZochios
@SpirosZochios 3 жыл бұрын
Also, is there a way to update the prices from the mobile app 'Sheets'?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
@@SpirosZochios Hey Spiros! It looks like our developer mentioned 2 weeks ago that it's not possible to use a Macro on a Sheets add-on, search 'macro' on this page: mixedanalytics.com/knowledge-base/api-connector-scheduling/ Have you gotten it to work with other add-ons? Now I'm curious, maybe we can try to fix it to allow for that.. Also for the last question, we don't support the mobile version at the moment.
@riccardoalla6439
@riccardoalla6439 3 жыл бұрын
Very good but I have one problem with it. When refreshing the data on my API connector it changes the cell order where the coin and relative prices are and all links have to manually be amended again. Why is that? How can I keep the order fixed?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Hi Ricardo! Yes, this does happen sometimes with certain APIs (they may reorder based on the current price, ascending, descending, etc.) To get around this, you can make a new sheet and use VLOOKUP to fix your desired cryptos in the order you would like. Here's an article to get you started: support.google.com/docs/answer/3093318?hl=en Let me know if that works for you!
@riccardoalla6439
@riccardoalla6439 3 жыл бұрын
@@mixedanalytics thanks for the tip. I went through it. Finally found a way to fix the problem 👍
@abdullahomar3917
@abdullahomar3917 3 жыл бұрын
Thanks for the video by the way..
@mixedanalytics
@mixedanalytics 3 жыл бұрын
You're welcome
@johnfrancispederson
@johnfrancispederson 3 жыл бұрын
How might you get historical data? Like how with stocks you can use PRICE to get the price on a certain date at close. Thanks for the video, very helpful.
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Hey John, If you want to do that, my guess would be to try this endpoint: www.coingecko.com/api/documentations/v3#/coins/get_coins__id__history, just pass in the id as a query parameter along with the date, and I assume it will return the closing price. Let me know if that helps!
@herrguru4264
@herrguru4264 Жыл бұрын
how do we get API data for "watchlist" within Coingecko? For example Bitcoin: "On 1,2Million watchlist"?
@AzizGazipura
@AzizGazipura 3 жыл бұрын
This is AWESOME - thank you!
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Glad you liked it!
@sha5124
@sha5124 2 жыл бұрын
Thanks for this! Is there anyway to have the data auto refresh without manually running the API function?
@mixedanalytics
@mixedanalytics 2 жыл бұрын
Yes! We offer scheduling in the pro version of the add-on: mixedanalytics.com/knowledge-base/api-connector-scheduling/
@kaysamkange
@kaysamkange 3 жыл бұрын
Great videos. Really helpful and much appreciated. Keep up the awesome work!
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Glad you like them! Thanks for the support Kuda :)
@lazarlazarevic5396
@lazarlazarevic5396 3 жыл бұрын
Can I get 1min, 5min,15min and 1 hour price value with API Connector from the CoinGecko or some crypto exchange?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Hi Lazar! The easiest way to refresh your data is via the pro-version "scheduling" feature outlined here: mixedanalytics.com/knowledge-base/api-connector-scheduling/ However, if you are not ready to pay for our service (or you want faster but more unstable refreshes), you can hack your way to a 2-minute refresh with cell-based refreshing that we outlined here: mixedanalytics.com/knowledge-base/importapi-custom-sheets-function/#num5 Let me know if that helps! :)
@LekarTB
@LekarTB 3 жыл бұрын
Video was awesome and it left me wondering if there's any way to import those simplified plot graphs they have on their main page? Thanks a lot!
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Hmm, good question. I don't think so but you could try pulling data from the endpoint /coins/{id}/market_chart and specifing the days=1, granularity should be by the hour or minute in this case.
@jamieukulele
@jamieukulele 3 жыл бұрын
Awesome video- Followed your instructions and it works. I have two questions. Q1 how do i get the info from the 3rd sheet (info on 3) so it can show in the second sheet next to where I am putting my coin name? Q2 I then want to input my coin quantity that I hold and have it calculate the total for each coin. Is there a video which answers both these questions?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Hey Jamie! Q1: if you want to do this dynamically, it may be a bit tricky since the data comes labelled like this: dogecoin » twd [you can't do a VLOOKUP directly]. My suggestion would be to first strip the excess information from that cell with this function: =LEFT(A1,FIND(" ",A1)-1) [this grabs the first word, which in our case would be the crypto symbol], then you could perform VLOOKUP to match the symbol/data in InfoOn3 with those in your ids list. Q2: Currently we don't have a dashboard that allows your own custom input, but that's a fantastic idea! I'll put that on the list of ideas :) For now, you can check this one out we did [simple tracker, doesn't have input for your holdings] but I'm sure you could easily modify it for your use case. Check it out here: mixedanalytics.com/knowledge-base/import-coingecko-data-to-google-sheets/#num5 Let me know if that helps, thanks! Doug
@ParkerMcClelland
@ParkerMcClelland 3 жыл бұрын
thanks for for vid when attempting to update prices, I noticed that I need to delete/clear previously populated cells, otherwise I get an error message when I press "run". Is there a way around this?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Hey Parker! Interesting, I don't get that bug on my end. I only get that if I'm using the =ARRAYFORMULA() and then trying to pull in on top of that or if I did happen to have some data in that already. If you can't resolve it, you can post some more detailed feedback on our Reddit here (much easier to debug if we can see screenshots, Loom, etc.): www.reddit.com/r/api_connector/
@pegazuz1977
@pegazuz1977 2 жыл бұрын
Thanks for a great video. How do you replace a space when retrieving a data for a specific coin like "Tomb Shares" in the request?
@mixedanalytics
@mixedanalytics 2 жыл бұрын
You're welcome! You mean the space in "Tomb Shares"? Not sure I understand your question.
@pegazuz1977
@pegazuz1977 2 жыл бұрын
@@mixedanalytics I figured it out. Had to write “tomb-shares”
@hyper8547
@hyper8547 3 жыл бұрын
Hi, thx for an amazing explanation! Is it possible for you to make an entire profile tracker that updates PNL.
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Hi HS, I think to accomplish this, start by listing all the cryptos you have (so you only get prices for the stuff you have). Then you would have your raw data from CoinGecko running to one sheet, followed by QUERY() to another sheet. Or maybe you can wire up your date purchased+ volume to this one: www.coingecko.com/api/documentations/v3#/coins/get_coins__id__history You would only need to run it once to get the data into Sheets (if you don't have it yet), followed by comparing to the current prices: "www.coingecko.com/api/documentations/v3#/coins/get_coins__id_" So I imagine roughly 1 inputs sheet (your coins), 2 import sheets for data (above end points), followed by a 3rd sheet that compares what you have in a dashboard. Others that may help: www.coingecko.com/api/documentations/v3#/coins/get_coins__id__market_chart Hope that helps! Let us know you if you have any other questions!
@hyper8547
@hyper8547 3 жыл бұрын
@@mixedanalytics Yes, that would be great, I am a big fan! To see daily and weekly gains would be awesome. What do you think about Crypto Sheets?
@seancullen99
@seancullen99 3 жыл бұрын
Thanks man
@mixedanalytics
@mixedanalytics 3 жыл бұрын
No problem
@pamordonez5752
@pamordonez5752 3 жыл бұрын
Thank you Man.
@mixedanalytics
@mixedanalytics 3 жыл бұрын
You're welcome!
@AngelGonzalez-jx9pf
@AngelGonzalez-jx9pf 3 жыл бұрын
Thanks for the video. Are the current coin values supposed to be updated real-time in my spreadsheet as they change in coingecko too?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Hi Angel! They will not update automatically, you will need to manually re-run the sheet every time you want to refresh.
@luismariademourasimoesmend5347
@luismariademourasimoesmend5347 3 жыл бұрын
@@mixedanalytics How do you do that on google sheets?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
@@luismariademourasimoesmend5347 Update the prices? Just press the "run" button in API Connector and it will refresh the request.
@matthewpullen7973
@matthewpullen7973 3 жыл бұрын
I keep getting the following status: Completed with errors - Server responded with an error (404) Any idea what could be causing this? I'm following the steps in the video. I tried the Radiohead/itunes quick start API to check and THAT worked, can't get any output from coingecko though.
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Hey Matthew, A 404 is pretty generic and usually indicates to me there is a typo somewhere. If you are comfortable with it, you can post the URL you are trying to access here and I can take a look.
@jamieukulele
@jamieukulele 3 жыл бұрын
Is coin gecko still available?? I cannot find it in search on Mac app store.
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Hmm, I'm not sure why you are looking in the App store... try the website coingecko.com
@timetopoint
@timetopoint 3 жыл бұрын
What's a use case for this to be on a spreadsheet, when you can see the info right on the site though
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Say for example, you wanted to build some kind of crypto portfolio in Google Sheets for example, or you could even build a simple trading bot right within Sheets! Really the possibilities are endless, it's all about being able to access the data.
@timetopoint
@timetopoint 3 жыл бұрын
How to transfer my portfolio data, preferably to another free portfolio tracker?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
I don't think you can access your portfolio from CoinGecko via API, from what I can tell, since all the endpoints are open.
@Dan-kj5bm
@Dan-kj5bm 3 жыл бұрын
Awesome mate thanks
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Any time!
@johniotti
@johniotti 3 жыл бұрын
so this API connector thingy has started to allow only 8 refreshes per day. Is there anyway to override this without having to get a membership?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Nope, sorry not possible. What are you trying to do? Do you have to pull more than 8/day?
@bitchainresearch9819
@bitchainresearch9819 3 жыл бұрын
Hey I would love to know how to pull the data into rows (vertically) instead of columns (horizontally) how do you change that format in output options?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Actually, for this use case you could just use the =TRANSPOSE() function in Sheets and just have it spit out to a new sheet.
@chioz
@chioz 3 жыл бұрын
to bad nothing google sheets want money for an api now. is there an alternative?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Sorry you mean for our service or something else?
@luces2259
@luces2259 2 жыл бұрын
Will the price gets updated each time the price change?
@mixedanalytics
@mixedanalytics 2 жыл бұрын
No, it won't update automatically. To change it you'll need to manually refresh or set up scheduling.
@thefather414
@thefather414 2 жыл бұрын
Isn't there a way to just put a formula into the cell to get live price? I want to track like 20 tokens. I don't need 6000 cryptos. I don't want to be a computer programmer...
@mixedanalytics
@mixedanalytics 2 жыл бұрын
Not possible with our tool. I guess there are other tools available for this but I don't know any off the top of my head. Good luck!
@anthonykolliopoulos
@anthonykolliopoulos 3 жыл бұрын
Hello, nice tutorial the most simple and comprehesive! i have a question when I run the command to get the prices every time the order of coins is changing. Do you have a solution about this?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Hi Antonis, you can use Sheets functions like VLOOKUP to check for coin names rather than pointing to a fixed position in the sheet. If you check this article, there's a template already set up for this: mixedanalytics.com/knowledge-base/import-coingecko-data-to-google-sheets/
@anthonykolliopoulos
@anthonykolliopoulos 3 жыл бұрын
@@mixedanalytics Nice!!
@ggmtddbo
@ggmtddbo 3 жыл бұрын
For binance exchange future, work also?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Sure, it works for any API endpoint.
@ezr3al203
@ezr3al203 3 жыл бұрын
is it possible to somehow sort them? Whenever i update the prices, the token get mixed in their row. Means i cannot reference to this cell as in this second its the price of btc and next its eth.
@mixedanalytics
@mixedanalytics 3 жыл бұрын
You can use Sheets functions like VLOOKUP to check for coin names rather than pointing to a fixed position in the sheet. If you check this article, there's a template already set up for this: mixedanalytics.com/knowledge-base/import-coingecko-data-to-google-sheets/
@dagotchi
@dagotchi 3 жыл бұрын
Why i dont see any other buttons like *Start* , only Help ?
@mixedanalytics
@mixedanalytics 2 жыл бұрын
Hey! You can post a screen shot over on our Reddit, maybe our support can take a look: www.reddit.com/r/api_connector/
@binnyum6403
@binnyum6403 3 жыл бұрын
This is awesome video! How did you do pop up menu for type bitcoin search ?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Ah, you mean Ctrl+F at 5:46? I'm not sure if that's what you were talking about but let me know :)
@herbling1475
@herbling1475 3 жыл бұрын
Thank you so much for the tutorial! Do you know where I can find out, how to get the prices get API into two columns instead of into two rows? I am trying to sort the data alphabetically, and it seems it would be much easier that way. I cannot figure out how to sort rows alphabetically, only columns!
@herbling1475
@herbling1475 3 жыл бұрын
Also, everytime the API refreshes, it changes what cells the data appears in. so if I use these cells for reference, it jumbles everything after it refreshes the API.
@mixedanalytics
@mixedanalytics 3 жыл бұрын
If you wanna get the prices by column, I think you could use the =TRANSPOSE() function or a pivot table. As for the API jumping around, try to use &order=id_asc on the end of your URL, otherwise you will need to use =VLOOKUP() to pipe your data over to another sheet. Let me know if that helps! :)
@siebevermijs3756
@siebevermijs3756 3 жыл бұрын
Thanks for the information! But how do you only retrieve like the price of BTC or dogecoin? So that the only thing that you get is the price without any other information whatsoever?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
If you use the /coins/{id} endpoint, you can specify which coins you would like returned. Read more here: www.coingecko.com/api/documentations/v3#/coins/get_coins__id_ Let me know if that helps! :)
@siebevermijs3756
@siebevermijs3756 3 жыл бұрын
@@mixedanalytics Yes, so I let Bitcoin and Ethereum return, but I also get a cel above them with "bitcoin >> euro" and "ethereum >> euro which I both don't want when I let the API run, also I can't find a way to get the information placed underneath eachother in cells that I've selected, idk if thats even possible hahah. What I did is just add another page for just the prices and then copied them into my crypto portfolio which was then automatically updated when I ran the API. But please let me know if u do have got answers on my questionss
@mixedanalytics
@mixedanalytics 3 жыл бұрын
@@siebevermijs3756 You nailed it! The best practice is to have a "raw-data" sheet that pulls in the data from API Connector (sorry, can't disable headers 😝, the "bitcoin >> euro" and "ethereum >> euro" cells you are referring to in this case) and then port that over to another sheet using either VLOOKUP or QUERY. Currently, we don't support selection-based output. API Connector just dumps everything to a single sheet. That would be a cool feature though, thanks for the suggestion! Let me know if that helps answer your questions :)
@siebevermijs3756
@siebevermijs3756 3 жыл бұрын
@@mixedanalytics Yes it definitely does! thankyou, I've just started spread sheet since this week and I really enjoy the coding stuff. I'll keep trying to improve myself! +1 sub!
@khanhletran9632
@khanhletran9632 3 жыл бұрын
How can i get list of latest coin that imported to coingecko ??
@mixedanalytics
@mixedanalytics 3 жыл бұрын
I don't think there is a specific endpoint you can call for that, but you could just run the request once, then run again in a separate sheet on a daily/weekly basis to check for new additions in coingecko.
@cynaed
@cynaed 3 жыл бұрын
Does it change automatically or do I need to press "run" again to sync it with the current price in coingecko?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Hi! Correct, you will need to press run again to synchronize with the current prices. However, with our pro account, you can automate this process.
@blablalablala
@blablalablala 3 жыл бұрын
@@mixedanalytics How much is the Pro and you got any promo code ,)
@blablalablala
@blablalablala 3 жыл бұрын
When you install this add-on, you automatically enter a 14-day free trial that activates all premium features. After 14 days, you will be switched to the free plan How do you automate it since it has it in the 14day trial?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
@@blablalablala Haha yep, 14 free days! Check out this article here: mixedanalytics.com/knowledge-base/api-connector-scheduling/
@wilet.3088
@wilet.3088 3 жыл бұрын
Great vid ! Can we get a similar one for Libre Office ?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Oh, you mean like connecting an API to Libre Office?
@johnjosephong7203
@johnjosephong7203 3 жыл бұрын
does the price of the coins get updates everyday?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Not by default. You would need to manually run the request or you can get scheduling with our pro version, you can read more here: mixedanalytics.com/knowledge-base/api-connector-scheduling/
@nebojsa1976
@nebojsa1976 2 жыл бұрын
Is there a way to do it without paying for API connector? I have around 80 crypto and I need it to update the price (actually the % change for 24 hours) once a day for each 80 of them. I guess I'd need to pay for that since it is more then 8 calls a day, but there's got to be the way to do it free without the connector.
@mixedanalytics
@mixedanalytics 2 жыл бұрын
There probably is, you can check out App Script to get started. Good luck!
@reinhardfellmann8289
@reinhardfellmann8289 3 жыл бұрын
Great tutorial! Thanks for sharing knowledge with our community. Assume I have a long list of "ids" with 30 different cryptocurrencies. How can I refer to an id-list in the API URL path? In your tutorial, you use three different coins which you have to type in "&bitcoin,dogecoin,rabbitcoin" in the API URL path. Is there a shortcut for a longer list of "ids" (coin) that avoids typing in all ids separately? Thanks! Keep up your fantastic work.
@shaunmoore9121
@shaunmoore9121 3 жыл бұрын
exactly my question too, I want to basically run a watchlist.
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Hey y'all! So yes you can use the +++sheet!A1+++ syntax unique to our tool to reference cells instead. You can read up on it here: mixedanalytics.com/knowledge-base/api-connector-create-api-request-based-on-cell/ Let me know if that helps! Thanks :)
@marcjourne707
@marcjourne707 3 жыл бұрын
thank you!
@mixedanalytics
@mixedanalytics 3 жыл бұрын
You're welcome!
@Francotujk
@Francotujk 3 жыл бұрын
hello! How can I do to obtain all the serie of prices (for example all the last year prices)? Thanks!!
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Hi Franco, try this one! www.coingecko.com/api/documentations/v3#/coins/get_coins__id__history
@Francotujk
@Francotujk 3 жыл бұрын
@@mixedanalytics thanks! I will
@diogob6104
@diogob6104 3 жыл бұрын
Can i get historical max and min values of a crypto token from coingecko API?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Hmm, I think that you can't easily. the endpoint /coins/{id}/history will give you a snapshot at a specific date but not the min max values of all time.
@diogob6104
@diogob6104 3 жыл бұрын
@@mixedanalytics Hmm, That's what I thought. Ty for the answer!
@hockeyOK
@hockeyOK 3 жыл бұрын
Hi, great videos from you to understand how it works, but maybe there is a chance to get video how to create API to get a price for each and every coin on KuCoin exchange please.
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Great suggestion! I'll mark that down.
@hockeyOK
@hockeyOK 3 жыл бұрын
@@mixedanalytics thanks, it will be another one great video i suppose :)
@mcnobody1012
@mcnobody1012 3 жыл бұрын
I'm not sure why you even make the IDs sheet,then, you can skip that step,cause just the query & comma separated ids works. I want to include other data too, so I just keep adding ampersands & the code,right? I see they have exchanges, finance platforms & finance products, I wonder if that includes defi platforms & interest rates,I don't see that in the code on each of those categories,I guess I gotta just do a query & find out,unless anyone knows for sure & other free API's from other sites that would have this data.
@mixedanalytics
@mixedanalytics 3 жыл бұрын
That's right, you don't NEED the ids sheet, but I find it's good practice as it prevents you from confusing them (as a reference sheet if you see what i mean). There are TONS of free APIs out for crypto. I have more videos in the works about them, or you can check a few of the other ones I've already posted on this channel. Check out some of these other ones: medium.com/coinmonks/best-crypto-apis-for-developers-5efe3a597a9f Try this one for DeFi: docs.defipulse.com/
@mcnobody1012
@mcnobody1012 3 жыл бұрын
@@mixedanalytics Cool,will do,yea,I wanna have one that will track the various defi interest rates & keep track of what I'm making versus what I may be paying back on Crypto loans, a P&L spreadsheet basically & it can monitor my investments & business.
@souvikghosh5087
@souvikghosh5087 3 жыл бұрын
some coins values can't be extracted.
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Which ones in particular? I can take a look and try to find a workaround.
@avelefondo2078
@avelefondo2078 3 жыл бұрын
Does the data updates on real time?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Hi Avel, So every time you press the "Run" button, API Connector will update the data from CoinGecko. If you want to automate this, you can check out scheduling, one of our pro features: mixedanalytics.com/knowledge-base/api-connector-scheduling/
@JuankM1050
@JuankM1050 3 жыл бұрын
I try to do this with pancakeswap you can help me, how i can get last price of a token
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Hey Juan! Make sure you have the right ID, and try to use this endpoint: www.coingecko.com/api/documentations/v3#/coins/get_coins__id Let me know if that helps!
@PM-st6vu
@PM-st6vu 3 жыл бұрын
How frequently does the sheet get upgraded using the tool?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
You can run it manually to fetch data immediately or set up scheduling up to 1x per hour.
@PeterClaven
@PeterClaven 3 жыл бұрын
@@mixedanalytics Hi! How do you set it up to fetch immediately?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
@@PeterClaven Hi Kevin! Every time you press "Run" in the sidebar, the data is fetched live at that moment.
@johnfrancispederson
@johnfrancispederson 3 жыл бұрын
Admin isn't allowing the download?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Sorry, not allowing the download of what now?
@pierreprudhomme9523
@pierreprudhomme9523 3 жыл бұрын
Hey, is it possible to connect this tool to Messari API ?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Hi Pierre, Sure, why not try it? API Connector can handle a bunch of APIs, read more here: mixedanalytics.com/knowledge-base/frequently-asked-questions/#num7 Hope that helps!
@pierreprudhomme9523
@pierreprudhomme9523 3 жыл бұрын
@@mixedanalytics I will have a look thank you !
@Wonka_Tonka
@Wonka_Tonka 3 жыл бұрын
is API connector free , it doesn't look like i can "create "
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Hello, Yep it is free! If you think API Connector is behaving strangely you can post a Loom/screenshot over in our Reddit to get some more advanced technical help here: www.reddit.com/r/api_connector/
@RadoHudran
@RadoHudran 3 жыл бұрын
Very useful app guys, hope you're still holding ur doge
@mixedanalytics
@mixedanalytics 3 жыл бұрын
🐕📈🌘
@1jbegic
@1jbegic 3 жыл бұрын
How about the security issues this may cause? Think about the bank/ crypto accounts you are accessing through the browser and leaving a footprint. You might get vulnerable with this running. Just saying
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Hi Yerko! That's a good point. You can read about our privacy policy here mixedanalytics.com/privacy-policy/
@ruschamerilion9879
@ruschamerilion9879 3 жыл бұрын
great video !
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Thanks for watching!
@lowdably
@lowdably 3 жыл бұрын
Not working anymore
@lowdably
@lowdably 3 жыл бұрын
not usable really. When you pull refresh to get newest coin prices, it gets prices in a random sequence. So you have made yourself a nice looking table with your totals, you have synced cells with prices, everything is nice. Next day you want to refresh prices and you get a new sequence of coin prices and your table looks like trash and you have to sync everything from zero.
@mixedanalytics
@mixedanalytics 2 жыл бұрын
Hello! I'd suggest in that case to either use the sheet you pull data into as a raw sheet, then pipe it over to another sheet using VLOOKUP(), or if you are calling /coins/markets endpoint, please try adding the `&order=id_desc` query parameter to the end of your request
@princedeniega3685
@princedeniega3685 7 ай бұрын
cant get it for free now sadddddddddddd
@olehitlerrr570
@olehitlerrr570 2 жыл бұрын
dont work -.-
@mixedanalytics
@mixedanalytics 2 жыл бұрын
:(
@timetopoint
@timetopoint 3 жыл бұрын
API has been moved to the bottom By the way
@mixedanalytics
@mixedanalytics 3 жыл бұрын
👍👍👍
@crypto_peng
@crypto_peng 3 жыл бұрын
taiwan no.1 lol
@mixedanalytics
@mixedanalytics 2 жыл бұрын
;)
@abdullahomar3917
@abdullahomar3917 3 жыл бұрын
Oh "you aren't into this investing thing?" I bet you are BTC maximalist ; 0
@mixedanalytics
@mixedanalytics 3 жыл бұрын
TO THE MOON! 🤫
@InspiringThings101
@InspiringThings101 2 жыл бұрын
Video is pretty outdated.
@alexfomkin2645
@alexfomkin2645 2 жыл бұрын
Used to work. Lost 20 minutes of life. Don’t even try.
@mixedanalytics
@mixedanalytics 2 жыл бұрын
:( What broke? Maybe I can go take a look and see what needs to be updated
@amethyst7527
@amethyst7527 3 жыл бұрын
Does it auto update or do I need to manually reinsert the data every so often?
@mixedanalytics
@mixedanalytics 3 жыл бұрын
Hey Amethyst! On the free account you will have to manually re-run. Otherwise we offer scheduling with the paid version :) Check here for pricing dets: mixedanalytics.com/api-connector-pricing/
Import CoinMarketCap Data to Google Sheets
10:14
mixed analytics
Рет қаралды 51 М.
What's in the clown's bag? #clown #angel #bunnypolice
00:19
超人夫妇
Рет қаралды 34 МЛН
Cool Parenting Gadget Against Mosquitos! 🦟👶 #gen
00:21
TheSoul Music Family
Рет қаралды 33 МЛН
Он улетел, но обещал вернуться...
00:30
ПРЕМИЯ ДАРВИНА
Рет қаралды 4,9 МЛН
Refreshable Crypto and Metal Portfolio in Excel for Free
12:43
XRP Lazarus
Рет қаралды 29 М.
Import CoinBase Data to Google Sheets
8:57
mixed analytics
Рет қаралды 11 М.
Connect Excel to CoinGecko API  for Historical OHLC cryptocurrency data
18:07
Paula's Web3 & Crypto
Рет қаралды 38 М.
How To Track Cryptocurrencies In Google Sheets
16:35
Think Stocks
Рет қаралды 51 М.
Import Cryptocurrency Price In Real Time In Google Sheets
4:50
How to access an API with Google Apps Script
9:52
saperis
Рет қаралды 67 М.