> ## Documentation Index
> Fetch the complete documentation index at: https://chainstack-docs-polygon-erigon-trace-deprecation.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# getSupply | Solana

> The Solana getSupply method returns information about the current supply of lamports in the network. Use it on Solana via Chainstack.

<Note>
  **Not available on the Developer plan**

  The method is available only on the [paid plans](https://chainstack.com/pricing/). Per-method rate limit: 2 RPS across all regions. See [Solana method limits](/docs/limits#solana-method-limits).
</Note>

The Solana `getSupply` method returns information about the current supply of lamports in the network.

This method provides detailed information about the current supply, including the total supply, the circulating supply, and the non-circulating supply. It is useful for understanding the current state of the network's economy.

## Parameters

* `commitment` — (optional) the level of commitment desired:
  * `processed` — the node has processed the block and the block may be on a fork.
  * `confirmed` — the block is confirmed by the cluster as not being on a fork.
  * `finalized` — the block is finalized by the cluster.

## Response

* `value` — the current supply information:
  * `total` — the total supply of lamports.
  * `circulating` — the circulating supply of lamports.
  * `nonCirculating` — the non-circulating supply of lamports.
  * `nonCirculatingAccounts` — the accounts that hold the non-circulating supply.

## Use case

A practical use case for `getSupply` is to understand the current state of the network's economy. This can be useful for wallets or other applications that need to display or make use of this information.


## OpenAPI

````yaml openapi/solana_node_api/getSupply.json POST /9de47db917d4f69168e3fed02217d15b
openapi: 3.0.0
info:
  title: getSupply example
  version: 1.0.0
  description: This is an API example for Solana's getSupply.
servers:
  - url: https://nd-326-444-187.p2pify.com
security: []
paths:
  /9de47db917d4f69168e3fed02217d15b:
    post:
      tags:
        - query
      summary: getSupply
      operationId: getSupply
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: integer
                  default: 1
                jsonrpc:
                  type: string
                  default: '2.0'
                method:
                  type: string
                  default: getSupply
                params:
                  type: array
                  default: []
      responses:
        '200':
          description: Supply details
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                  id:
                    type: integer
                  result:
                    type: object

````