How to pass parameters to API methods
masterWhen calling methods in pycoingecko, you can pass optional parameters exactly as they are named in the official CoinGecko API documentation.
Parameter Types:
- Lists: Use Python lists for parameters that accept multiple comma-separated values (e.g.,
ids=['bitcoin', 'ethereum']). - Booleans: Use Python
bool(True,False) orstr('true','false') for boolean type arguments.