pycoingecko icon indicating copy to clipboard operation
pycoingecko copied to clipboard

Python wrapper for the CoinGecko API

Results 24 pycoingecko issues
Sort by recently updated
recently updated
newest added

Add "x_cg_pro_api_key" to every call as this key is needed in coingecko pro version

put all endpoints into drop downs this should allow for easier navigation and better user experience.

Hi, I'm trying to use a symbol in order to get data about a coin, for e.g. BTC using `cg.get_price(ids='bitcoin')` will work, but is there a way to do something...

Hi Thank you for providing this package. I would like to suggest what I think about pagination while using this package. It's a little inconvenient to check whether there is...

async client using `aiohttp` instead of `requests`

Hi, I have a question. I am looking to find some historical data, I had used **cg.get_coin_market_chart_by_id** to get price data, however, I also need high_24h and low_24h. These two...

The response of cg.get_coin_market_chart_by_id(id=ripple,vs_currency=' usd',days='30') differs strongly from the response of https://api.coingecko.com/api/v3/coins/ripple/market_chart?vs_currency=usd&days=30 in terms of market cap and volume. For the pycoingecko response, market cap is zero while volume is...

https://www.coingecko.com/en/coins/uponly ``` \pycoingecko\api.py", line 36, in __request raise ValueError(content) ValueError: {'error': 'Could not find coin with the given id'} ```

Is there a canonical way to get the top 100 coins by market cap on a given day in the past? The `/coins/markets` endpoint is close to being able to...