How To Find Which Metrics A Chain Supports
Find which metrics a chain supports in growthepie before generating queries or code.
PreviousHow To Compare Stablecoin Supply Across ChainsNextHow To Get Chain Overview Data For Arbitrum
Last updated
Find which metrics a chain supports in growthepie before generating queries or code.
Use master.json to discover which metrics a chain supports before you query exports or generate code. This avoids invalid assumptions and lets you exclude unsupported combinations up front.
Live platform: https://www.growthepie.com/
https://api.growthepie.com/v1/master.json
curl -s https://api.growthepie.com/v1/master.jsonimport requests
master = requests.get("https://api.growthepie.com/v1/master.json", timeout=30).json()
print(master["chains"]["arbitrum"]["supported_metrics"])Check deployment or deployment_flag as well as supported_metrics.
Use the live metadata instead of hardcoding support tables.
Last updated
