# How To Find Which Metrics A Chain Supports

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

* Live platform: <https://www.growthepie.com/>

## API Path

* `https://api.growthepie.com/v1/master.json`

## Example Request

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

## Real Task Example

```python
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.

## Related Pages

* [Endpoint: master.json](/api-reference/api/master-json.md)
* [How To Identify Chains With Stale Data](https://github.com/growthepie/wiki/blob/master/gitbook/use-cases/how-to-identify-chains-with-stale-data.md)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.growthepie.com/use-cases/use-cases/how-to-find-which-metrics-a-chain-supports.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
