samuraitruong / coingecko-api-v3

The nodejs api library for accessing coingecko api v3 , develop with typescript
https://samuraitruong.github.io/coingecko-api-v3/
MIT License
54 stars 30 forks source link

Missing option to pass demo API key #42

Closed christoph2806 closed 11 months ago

christoph2806 commented 11 months ago

There should be an option to pass a coingecko demo api key. https://support.coingecko.com/hc/en-us/articles/21880397454233

christoph2806 commented 11 months ago

OK found out that you simply need to add 'x_cg_demo_api_key': 'YOUR_API_KEY' to the call parameters. e.G.

const trending = client.trending({'x_cg_demo_api_key': 'YOUR_API_KEY'});