Discover/studio.glassnode.com API
live

studio.glassnode.com APIstudio.glassnode.com

Access Glassnode Studio crypto analytics via API: on-chain fundamentals, supply dynamics, profit/loss metrics, futures data, and historical time-series for any asset.

Endpoints
9
Updated
10d ago
Try it
Filter by asset category tag (e.g. 'bitcoin', 'ethereum', 'defiToken', 'stablecoin', 'meme
api.parse.bot/scraper/55179ab9-7322-4730-940a-2f93819045b1/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/55179ab9-7322-4730-940a-2f93819045b1/get_assets_overview?asset_tag=bitcoin' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 9 totalclick to expand

Fetch the paginated list of all cryptocurrencies from the Overview table. Returns asset info and core metrics (price, market cap, volume, open interest, funding rate).

Input
ParamTypeDescription
asset_tagstringFilter by asset category tag (e.g. 'bitcoin', 'ethereum', 'defiToken', 'stablecoin', 'memeToken', 'layer1Token'). Use get_asset_categories to discover all available tags.
Response
{
  "type": "object",
  "fields": {
    "assets": "array of asset objects, each containing asset info (name, assetId, assetTags) and data array with metrics"
  },
  "sample": {
    "data": {
      "assets": [
        {
          "data": [
            {
              "path": "/market/price_usd_close",
              "latest": 76433.12,
              "change_7d": -0.024,
              "values_7d": [
                78383.21,
                78432.6
              ],
              "change_24h": 0.0095,
              "latest_timestamp": 1777593600
            }
          ],
          "asset": {
            "name": "Bitcoin",
            "assetId": "BTC",
            "assetTags": [
              "top",
              "bitcoin"
            ]
          }
        }
      ]
    },
    "status": "success"
  }
}

About the studio.glassnode.com API

The Glassnode Studio API exposes 9 endpoints covering on-chain and market analytics for cryptocurrencies, including asset fundamentals, supply dynamics, futures data, and profit/loss metrics. The get_chart_metric endpoint returns timestamped historical values for any metric-asset combination, while get_market_overview_metrics delivers top movers, sector performance time-series, and market cap aggregates — all in structured JSON.

Asset-Level Analytics

Four endpoints cover different analytical dimensions of individual assets. get_assets_fundamentals returns transfer volume, transfer count, active addresses, and non-zero address counts. get_assets_profit_loss exposes cost basis, NUPL, SOPR, and realized profit/loss figures. get_assets_supply_dynamics covers circulating supply, active supply, dormancy, exchange netflows, and whale address counts. get_assets_futures surfaces open interest, funding rates, and liquidation data. All four accept an optional asset_tag parameter (e.g. bitcoin, defiToken, stablecoin, memeToken) to scope results to a category — use get_asset_categories to enumerate every valid tag with its pagination metadata.

Market Overview and Search

get_market_overview_metrics requires no inputs and returns a multi-part response: a topMovers array with per-asset change and value fields, market_cap_sum and spot_futures_sum time-series arrays, sectorPerformance time-series, and treemap/heatmap objects for spot volume and supply-profit distribution. search_assets accepts a query string (asset name or symbol) and returns hits across both an assets index and a charts/metrics index — useful for discovering valid metric codes before calling get_chart_metric.

Historical Time-Series

get_chart_metric is the lowest-level data endpoint. It accepts an asset symbol (e.g. BTC, ETH, SOL), a metric code in category.MetricName CamelCase format (e.g. market.PriceUsdClose, market.MarketcapUsd), and an interval value (10m, 1h, 24h, 1w, 1month). Each data point in the response contains a unix timestamp t and a numeric value v. If the metric code is invalid or not available for the specified asset and interval, the endpoint returns an upstream_error field rather than data.

Asset Discovery

get_assets_overview serves as a starting point: it returns the full paginated list of tracked assets with core metrics including price, market cap, volume, open interest, and funding rate. Combined with get_asset_categories, it gives a complete map of what assets and categories are available before drilling into any of the specialized endpoints.

Common use cases
  • Monitor NUPL and SOPR trends across Bitcoin and Ethereum using get_assets_profit_loss to identify macro market sentiment shifts.
  • Track whale address counts and exchange netflows via get_assets_supply_dynamics to detect accumulation or distribution phases.
  • Pull open interest and funding rate data from get_assets_futures for a DeFi token watchlist to flag potential liquidation cascades.
  • Build a sector rotation dashboard using sectorPerformance time-series from get_market_overview_metrics.
  • Look up valid metric codes with search_assets before querying get_chart_metric for high-resolution 10-minute price or on-chain data.
  • Filter the full asset list in get_assets_overview by stablecoin or layer1Token tags to build category-specific screeners.
  • Backtest on-chain indicators by fetching historical time-series at 1w or 1month intervals via get_chart_metric for multiple assets.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Glassnode have an official developer API?+
Yes. Glassnode offers an official API at https://docs.glassnode.com/basic-api/api that requires an account and subscription. The Parse API provides structured access to Glassnode Studio analytics without managing direct API keys or subscriptions.
How does `get_chart_metric` handle invalid metric codes or unsupported asset-interval combinations?+
When the metric code is invalid or the requested metric is not available for the specified asset or interval, the endpoint returns an upstream_error field instead of a data array. Use search_assets to find valid metric codes before constructing a get_chart_metric call.
Can I filter any of the asset list endpoints by a specific asset tag, and where do I find valid tags?+
get_assets_overview, get_assets_fundamentals, get_assets_profit_loss, get_assets_supply_dynamics, and get_assets_futures all accept an optional asset_tag parameter. Call get_asset_categories to retrieve the full list of valid tag IDs along with pagination metadata (page, pageSize, pageCount, total).
Does the API expose individual wallet address balances or transaction-level on-chain data?+
Not currently. The API covers aggregated on-chain metrics — active addresses, non-zero address counts, whale counts, exchange netflows, and supply dynamics — but does not expose individual wallet balances or raw transaction records. You can fork this API on Parse and revise it to add an endpoint targeting that data if it becomes available on Glassnode Studio.
Are exchange-specific breakdowns (e.g. netflows per exchange) available from `get_assets_supply_dynamics`?+
The get_assets_supply_dynamics endpoint returns aggregate exchange netflow figures across assets rather than per-exchange breakdowns. Exchange-level granularity is not currently exposed. You can fork this API on Parse and revise it to add an endpoint covering per-exchange metrics.
Page content last updated . Spec covers 9 endpoints from studio.glassnode.com.
Related APIs in Crypto Web3See all →
coinbase.com API
Monitor real-time cryptocurrency market movements by viewing top gainers and losers, along with ranked coin listings showing price changes across different time periods. Stay informed on which cryptocurrencies are performing best to make timely investment decisions.
app.hyperliquid.xyz API
Access real-time leaderboard rankings, market data for perpetual and spot markets, order books, and detailed trader analytics on the Hyperliquid decentralized exchange. Monitor top traders' open positions and identify delta-neutral trading strategies.
etoro.com API
Monitor top eToro traders by accessing their profiles, portfolio holdings, performance statistics, and trading history to inform your investment decisions. Discover trending stocks and cryptocurrencies, search for specific instruments, and view detailed market data and news to stay updated on investment opportunities.
blur.io API
Access NFT collection data on Blur.io, including floor prices, best bids, listed tokens, and recent activity. Authenticate with an Ethereum wallet to place collection bids and retrieve portfolio holdings.
cmegroup.com API
Get CME Group market data including FedWatch interest-rate probabilities, futures quotes and settlements, volume/open interest history, and options expirations and near-the-money option chains.
nseindia.com API
Track live NSE stock prices, monitor indices, analyze option chains, and access corporate announcements with real-time market data from India's National Stock Exchange. View equity quotes with full order books, identify top gainers/losers, analyze 52-week highs/lows, and explore historical price trends all in structured JSON format.
opensea.io API
Search NFT collections and discover detailed stats, browse individual items, and track collection activity all in one place. Get real-time insights into collection performance and find the NFTs you're looking for on OpenSea.
polygon.io API
Access real-time and historical market data for stocks, cryptocurrencies, forex, and commodities—including price aggregates, ticker details, and financial statements—all from a single platform. Get the latest market news, check trading status across exchanges, and retrieve comprehensive ticker information to power your investment analysis and trading decisions.