get_crypto_info
Retrieve current cryptocurrency data including price, market cap, volume, and 24-hour changes for portfolio analysis and investment decisions.
Instructions
Get detailed information about a cryptocurrency.
Retrieves current price, market cap, volume, and 24h changes.
Args: symbol: Crypto symbol (e.g., 'BTC', 'ETH', 'SOL') or CoinGecko ID.
Returns: Dictionary containing coin information: - id, name, symbol - current_price, market_cap, total_volume - high_24h, low_24h, price_change_24h - market_cap_rank, categories
Example:
result = get_crypto_info(symbol="BTC")
print(f"Bitcoin: ${result['current_price']:,.2f}")
print(f"24h change: {result['price_change_percentage_24h']:.2f}%")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes |