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
0 answers

How to fetch specified crypto coin price variable values through coin gecko API in JavaScript

In crypto converter calculator Trying to fetch values of selected user input in options of selection of html of give and get, how to declare in the coingecko API to successfully fetch? const give_select = document.getElementById('give'); const…
0
votes
0 answers

Script request failed but browser request not

Which day I can not understand the reason for such a problem. I'm trying to get data from the Coingecko API in Google App Script. The simplest script function ping() { var url = 'https://api.coingecko.com/api/v3/ping'; var params = { …
0
votes
0 answers

Display CoinGecko Data inside table - React JS

I am currently building a table that display crypto currency in React. I was able to retrieve CoinGecko API successfully but I am currently having trouble with displaying the data. Before I was able to display the data of a random JSON file I…
nam.trinh
  • 1
  • 2
0
votes
1 answer

CoinGeckoApi not responding in flutter

It used to work and the image of the coin was displayed, but for several days this error is displayed instead of the image of the coins. FutureBuilder( future: …
mary
  • 37
  • 7
0
votes
1 answer

undefined is not an object when using axios

I am using the code below to get data from the CoinGecko API and then set states to the data returned however when I console.log for example general.data, 'undefined' is being logged. Can someone point out how the code is to be modified such that…
0
votes
1 answer

No response when running pycoingecko CoinGeckoAPI

I do not receive any error after running the code, but there are also no response. Let me know if any other information is required to figure where went wrong. Input from pycoingecko import CoinGeckoAPI cg =…
0
votes
1 answer

Why did I suddenly get "You've exceeded the Rate Limit" error?

Problem: On July 23, this code suddenly stop working. Environment: I am running this code on Google Apps Script. I call only 14 calls per day for the coin gecko API server. 8 calls / sec. is the Coin Gecko's rate Limit. 50 calls / min. is its…