Questions tagged [coingecko]

Use for questions regarding programmatic access of coingecko api. Use with the tag of the language(eg:[python], [javascript]) used to access the api.

CoinGecko is a website and API offering data for many cryptocurrencies.

Official Documentation:

https://www.coingecko.com/en/api/documentation

69 questions
0
votes
2 answers

Automate historic data collection from CoinGecko with Google Sheets

Been collecting historical bitcoin data from CoinGecko API using Google Sheets. Manual method where I have to open the sheet and copy and "Paste values only" to paste data in the history list. History on the left side and data collection on the…
0
votes
3 answers

Not get info of coingecko API

I´m forking this repo https://github.com/FundacionPesetacoin/Pesetacoin_WooCommerce-Plugin and working fine. But when change the API for catch the price in other Site, not update I try some differents links of API and make same. Original code get…
-1
votes
1 answer

Flutter Crypto App working with full functionality on Emulator & physical device but after rolling out to app store many functionalities are missing

I have built a Crypto App with API from https://api.coingecko.com/api/... This App works fine when on Emulator or Physical Device but after it is rolled out for production in Play Store, many functionalities are missing from the App (the whole…
Debasis Sil
  • 551
  • 1
  • 6
  • 13
-1
votes
1 answer

Why is this pandas data frame not updating with the new prices each time it loops?

How do I make it so that when I go through this loop, the data frame is updated each time with the new price data? import time import pandas as pd import pycoingecko cg = pycoingecko.CoinGeckoAPI() for i in range(10): df =…
Greg
  • 1
  • 1
-1
votes
1 answer

Trying to get CoinGecko API and user input to calculate and then output

Ive been trying to make this work for a while but cant seem to get my newbie head around this. I can console.log the coin, but cant seem to get it to multiply with "btcnumber' input and then update .innerText const api_url =…
PCookson
  • 1
  • 1
-1
votes
1 answer

Is there a way to select a certain piece of the HTTP request and save it as a variable in my pythonscript?

Picture I need to get the HTTP result, specifically the part with the BTC, ETH and USD prices (Under converted last in the image) and then save it as a variable in python so that I can display the price in the application. IDE: Pycharm…
A60
  • 1
  • 1
-1
votes
1 answer

I am getting an error when importing pycoingecko

!pip install pycoingecko from pycoingecko import CoingeckoAPI ImportError Traceback (most recent call last) in ----> 1 from pycoingecko import CoingeckoAPI ImportError: cannot…
-2
votes
1 answer

How to access the price on coingecko API?

I'm trying to implement a simple crypto coin converter. Trying to do it with coingecko API and react. Anyway, I get the coins listed on the dropdown, but the convert function, the main thing, isn't work. I don't know which endpoint of coingecko I…
-2
votes
1 answer

I can't figure how to use the axios.get() call to get the prices of cryptocurrencies using the coin gecko API

I am trying to just get the prices of bitcoin, ethereum, and dogecoin data using coingeckos api. I am trying to use the axios call axios.get method but I can't seem to figure it out. This is the code I have so far: const cryptSettings = async() =>…
1 2 3 4
5