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

How should i apply filter on coin gecko API

I am using Node JS with Coin Gecko API. All are working fine but now i need to add filter in following API' end point on coin gecko. I have checked the documentation as well but unable to find any solution. My issue is when i call let data = await…
Pritesh Mahajan
  • 4,974
  • 8
  • 39
  • 64
1
vote
1 answer

Creating a multi-indexed column dataframe

Two pandas DataFrames populated by API. Need joined DataFrame in specific format. Current State - Two dataframes each indexed by timestamp eth_df: close symbol timestamp 1541376000000 206.814430 eth 1541462400000 …
Jacob R
  • 89
  • 7
1
vote
1 answer

Request failed for https://api.coingecko.com returned code 429. Truncated server response: error code: 1015

I'm working with getting crypto pricing on my google sheet but I keep getting an error message. I've looked around and haven't really come across anything for CoinGecko. Below is the error message. "Exception: Request failed for…
1
vote
2 answers

Most Recent Coins added to CoinGecko

I am trying to get the most recently added coin added to Coingecko. Any ideas which API to use or how to achieve this. Ideally I am trying to get this in near realtime. Thanks
1
vote
1 answer

CoinGecko exchange rates conversion

I already seen the CoinGecko documentation but it does not contain explaination or in depth explaination on their API Documentation. Regarding on CoinGeckos API, their is exchange_rates but it is only applicable for Bitcoin (BTC) to other…
Forbidden
  • 109
  • 2
  • 10
1
vote
0 answers

How to Access API Subcomponents in CoinGecko

This is a portion of the code returned by CoinGecko API. { "id": "bitcoin", "symbol": "btc", "name": "Bitcoin", }, "image": { "thumb": "https://assets.coingecko.com/coins/images/1/thumb/bitcoin.png?1547033579", "small":…
1
vote
0 answers

How can I get the key values from API props response

I couldn't map the second API response https://api.coingecko.com/api/v3/global with error prompted (read property 'map' of undefined), while the first API is fine. Whats the issue here? export default function Home(props) { const { data } =…
Humshark
  • 11
  • 1
1
vote
1 answer

How can I get all(6867) images from CoinGecko api?

I want to get all the images of the coins(6867 ) that CoinGecko brings, but its API CoinGeckoClient.coins.list() only ruturn {id,symbol,name} and CoinGeckoClient.coins.all() only return 250 coins
1
vote
1 answer

canvasjs and coingecko api data

being new to plotting chart with the external api data and lack of knowldge leads me to ask HOw to plot a chart with coingeko charts api data? link to get json formated api data…
kevin
  • 21
  • 5
0
votes
0 answers

Cannot read value of undefined when the value is clearly defined

This is quite a weird issue but I will try to explain it to the best of my abilities. Stack: React Native, Node & express. What I am trying to do I am trying to retrieve some data from an endpoint (Coingecko API) and map it to a card component (or a…
Zak
  • 5
  • 5
0
votes
1 answer

Why is the price in the markets endpoint vs the market_chart endpoint different?

Markets endpoint: https://api.coingecko.com/api/v3/coins/markets?vs_currency=usd&ids=bitcoin current_price 22105 Market chart endpoint: https://api.coingecko.com/api/v3/coins/bitcoin/market_chart?vs_currency=usd&days=7&interval=daily The last…
WHOATEMYNOODLES
  • 845
  • 9
  • 25
0
votes
0 answers

KeyError prices for Coingecko API

I have tested this and has implemented it into my High charts javascript file. The caveat is that when I reload the page twice it will crash due to an error. @app.route('/') def cryptodashboard(): # Get historical price data for Bitcoin,…
0
votes
1 answer

Coingecko api 404 angular get request

I'm trying to pull data from coin gecko api, but I'm getting status 404 error and the body is returning error: "Collection 'v3' not found". The api url I'm using is https://api.coingecko.com/api/v3/simple/price?ids=bitcoin&vs_currencies=usd. I'm…
Marrs
  • 21
  • 2
0
votes
0 answers

Has 'exchange-information' from Binance-API an equivalent in CoinGecko-API?

With Binance-API (https://binance-docs.github.io/apidocs/futures/en/#exchange-information ) one can get this information symbols > filters > { "filterType": "LOT_SIZE", "maxQty": "10000000", "minQty": "1", "stepSize": "1" }, { "filterType":…
0
votes
0 answers

Coingecko API data is not appending neatly to a pandas dataframe using ticker/date variables

I am pulling twitter user data to measure the accuracy of their tweets. I've got the dataset in a pandas df and i want to coingecko api to pull the ticker and date so it can append the 'Tweet Price' date so i can do further data processing. The…