21 lines
800 B
Python
21 lines
800 B
Python
import requests
|
|
from .alpha_vantage_common import API_BASE_URL
|
|
|
|
def get_market_cap() -> str:
|
|
"""
|
|
Retrieve the market capitalization percentage data for various cryptocurrencies using CoinGecko.
|
|
|
|
Returns:
|
|
str: Market capitalization percentage data for cryptocurrencies
|
|
"""
|
|
endpoint = f"https://api.coingecko.com/api/v3/global"
|
|
response = requests.get(endpoint)
|
|
response.raise_for_status()
|
|
data = response.json()
|
|
market_cap_pct = data.get("data", {}).get("market_cap_percentage", {})
|
|
# return json.dumps(result, indent=2)
|
|
result = "# Market Capitalization Percentage Data\n\n"
|
|
for coin, percentage in market_cap_pct.items():
|
|
# Format each line as "Coin: XX.XX%"
|
|
result += f"- {coin.upper()}: {percentage:.2f}%\n"
|
|
return result |