# Glassnode Coin Issuance Metric

> Glassnode Coin Issuance Metric is a paid API for AI agents from x402.glassnode.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns the total amount of new coins added to circulating supply (minted/issued) for BTC or ETH over 24-hour intervals.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/supply/issued
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glassnode-coin-issuance-metric-16b5e60b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9nskAL6irRH6ZYNwFB15u

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability glassnode-coin-issuance-metric-16b5e60b
```

Example prompt: Pull the Glassnode daily coin issuance data for Bitcoin in native units — I want to see how many new BTC are being minted and added to circulating supply.

## When to prefer this

Use this endpoint when you need authoritative on-chain supply issuance data (newly minted coins) for Bitcoin or ETH with daily granularity, sourced from Glassnode's professional-grade blockchain analytics platform. Prefer this over generic crypto APIs when accuracy of supply inflation metrics matters, such as for macro analysis, tokenomics research, or monitoring monetary policy of proof-of-work chains.

## Known failure modes

- Invalid asset symbol (not BTC or ETH) returns an error
- Invalid currency or format parameter returns a validation error
- Payment of 0.05 USDC not provided or rejected results in 402 Payment Required
- Network timeout or Glassnode data unavailability returns a 5xx error
- Missing required 'a' (asset) query parameter returns a 400 Bad Request

## How this service works

Issuance — The total amount of new coins added to the current supply, i.e. minted coins or new coins released to the network. Data by Glassnode.

## Output

An array of timestamped data points, each containing a Unix timestamp (t) and the numeric value (v) representing the amount of new coins issued to the network in that 24-hour period, in either native coin units or USD depending on query parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "a"
     ],
     "properties": {
      "a": {
       "enum": [
        "BTC",
        "ETH"
       ],
       "type": "string",
       "description": "Asset symbol, e.g. BTC, ETH"
      },
      "c": {
       "enum": [
        "native",
        "usd"
       ],
       "type": "string",
       "description": "Currency for denominated values, e.g. usd, native"
      },
      "f": {
       "enum": [
        "csv",
        "json"
       ],
       "type": "string",
       "description": "Response format: json or csv"
      },
      "i": {
       "enum": [
        "24h"
       ],
       "type": "string",
       "description": "Time interval / resolution, e.g. 24h, 1w, 1month"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "array",
     "items": {
      "type": "object",
      "properties": {
       "t": {
        "type": "number"
       },
       "v": {
        "type": "number"
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glassnode-coin-issuance-metric-16b5e60b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.glassnode.com](https://www.zero.xyz/host/x402.glassnode.com/llms.txt)
