List of Metrics

Endpoints

GET https://api.glassnode.com/v2/metrics/endpoints

This endpoint returns a list of available endpoints and supported options for it. i.e. Assets, Exchanges, Currencies, Formats and Resolutions (see response).

[
  {
    "path": "v1/metrics/.../..."
    "tier": 1,
    "assets": [
      {
        "symbol": "BTC",
        "name": "Bitcoin",
        "tags": [
          "top"
        ],
        "exchanges": [
          "aggregated",
          "binance",
          "bitfinex",
          "bithumb",
          ...
        ]
      },
      ...
    ],
    currencies": [
      "NATIVE",
      "USD"
    ],
    "resolutions": [
      "10m",
      "1h",
      "24h",
      "1w",
      "1month"
    ],
    "formats": [
      "JSON",
      "CSV"
    ]
  },
  ...
]

Last updated