> ## Documentation Index
> Fetch the complete documentation index at: https://docs.solanatracker.io/llms.txt
> Use this file to discover all available pages before exploring further.

# getSupply

> Runs the Solana RPC `getSupply` method.



## OpenAPI

````yaml getsupply post /
openapi: 3.1.0
info:
  title: Solana RPC
  version: 1.0.0
  description: Solana RPC HTTP method reference.
servers:
  - url: https://rpc-mainnet.solanatracker.io
    description: Mainnet RPC endpoint
security: []
paths:
  /:
    post:
      summary: Run `getSupply`
      description: Runs the Solana RPC `getSupply` method.
      operationId: getsupply
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                jsonrpc:
                  allOf:
                    - type: string
                      enum:
                        - '2.0'
                      description: The JSON-RPC protocol version.
                      example: '2.0'
                      default: '2.0'
                id:
                  allOf:
                    - type: string
                      description: A unique identifier for the request.
                      example: '1'
                      default: '1'
                method:
                  allOf:
                    - type: string
                      enum:
                        - getSupply
                      description: The name of the RPC method to invoke.
                      example: getSupply
                      default: getSupply
                params:
                  allOf:
                    - type: array
                      description: Optional configuration object.
                      default: []
                      items:
                        type: object
                        properties:
                          commitment:
                            type: string
                            description: The commitment level for the request.
                            enum:
                              - confirmed
                              - finalized
                              - processed
                            example: finalized
                          excludeNonCirculatingAccountsList:
                            type: boolean
                            description: >-
                              Option to exclude the detailed list of
                              non-circulating SOL reserve accounts for faster
                              response.
                            example: true
              required:
                - jsonrpc
                - id
                - method
                - params
            examples:
              default:
                value:
                  jsonrpc: '2.0'
                  id: db16f277-1a22-41ff-9f85-f37e2cd77900
                  method: getSupply
                  params:
                    - commitment: finalized
                      excludeNonCirculatingAccountsList: true
      responses:
        '200':
          description: Successfully retrieved the supply information.
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    allOf:
                      - type: string
                        enum:
                          - '2.0'
                        description: The JSON-RPC protocol version.
                        example: '2.0'
                  id:
                    allOf:
                      - type: string
                        description: Identifier matching the request.
                        example: '1'
                  result:
                    allOf:
                      - type: object
                        description: Context and supply details.
                        properties:
                          context:
                            type: object
                            description: Context of the response.
                            properties:
                              slot:
                                type: integer
                                description: Slot in which the data was fetched.
                                example: 1114
                          value:
                            type: object
                            description: Supply details.
                            properties:
                              total:
                                type: integer
                                description: >-
                                  Total SOL supply in existence (in lamports),
                                  including both circulating and locked tokens.
                                example: 1016000
                              circulating:
                                type: integer
                                description: >-
                                  Amount of SOL (in lamports) currently in
                                  circulation and available for public use.
                                example: 16000
                              nonCirculating:
                                type: integer
                                description: >-
                                  Amount of SOL (in lamports) held in reserve
                                  accounts and not currently available in
                                  circulation.
                                example: 1000000
                              nonCirculatingAccounts:
                                type: array
                                description: >-
                                  List of Solana wallet addresses that hold
                                  non-circulating SOL tokens in reserve.
                                items:
                                  type: string
                                example:
                                  - FEy8pTbP5fEoqMV1GdTz83byuA8EKByqYat1PKDgVAq5
                                  - 9huDUZfxoJ7wGMTffUE7vh1xePqef7gyrLJu9NApncqA
                                  - 3mi1GmwEE3zo2jmfDuzvjSX9ovRXsDUKHvsntpkhuLJ9
                                  - BYxEJTDerkaRWBem3XgnVcdhppktBXa2HbkHPKj2Ui4Z
              examples:
                default:
                  value:
                    jsonrpc: '2.0'
                    id: db16f277-1a22-41ff-9f85-f37e2cd77900
                    result:
                      context:
                        slot: 1114
                      value:
                        total: 1016000
                        circulating: 16000
                        nonCirculating: 1000000
                        nonCirculatingAccounts:
                          - F1Pe9T8X6cctqFYT8yvddn7fdQ25GWKVETAYQ5v8o5KQ
                          - 1huDUZfxoJ7wGMTffUE7vh1xePqef7gyrLJu9NApncqA
                          - F1Pe9T8X6cctqFYT8yvddn7fdQ25GWKVETAYQ5v8o5KQ
                          - 2YxEJTDerkaRWBem3XgnVcdhppktBXa2HbkHPKj2Ui4Z
      security:
        - ApiKeyQuery: []
components:
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api_key

````