Documentation

issued_supply

Returns the issued supply figure for the token economics your node reports. The call uses the x-cache-id pattern only; there is no JSON body in the public reference.

Endpoint

POST https://mempool.lineage.to/issued_supply

Headers

HeaderTypeDescription
x-cache-idstringIdempotency / cache key. Must match the documented pattern (32 lowercase hex characters, e.g. ^[a-z0-9]{32}$). The response id matches this value.

Request body

None (empty body).

Example

curl -sS -X POST "https://mempool.lineage.to/issued_supply" \
  -H "Content-Type: application/json" \
  -H "x-cache-id: 0123456789abcdef0123456789abcdef" \
  -d ''

Responses

200 on success. The content field is typically a numeric value representing issued supply, subject to the unit your node returns.

Example success payload

{
  "id": "0123456789abcdef0123456789abcdef",
  "status": "Success",
  "reason": "Supply returned",
  "route": "issued_supply",
  "content": 0
}

Example error envelope (typical 400)

{
  "id": null,
  "status": "Error",
  "reason": "Bad Request",
  "route": null,
  "content": null
}