How To Find Which Metrics A Chain Supports

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.

Explore It Live

API Path

  • https://api.growthepie.com/v1/master.json

Example Request

curl -s https://api.growthepie.com/v1/master.json

Real Task Example

import requests

master = requests.get("https://api.growthepie.com/v1/master.json", timeout=30).json()
print(master["chains"]["arbitrum"]["supported_metrics"])

Caveats

  • Check deployment or deployment_flag as well as supported_metrics.

  • Use the live metadata instead of hardcoding support tables.

Last updated