> ## 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.

# getInflationGovernor



## OpenAPI

````yaml getinflationgovernor post /
openapi: 3.1.0
info:
  title: Solana RPC
  version: 1.0.0
servers:
  - url: https://rpc-mainnet.solanatracker.io
    description: Mainnet RPC endpoint
security: []
paths:
  /:
    post:
      summary: getInflationGovernor
      operationId: getinflationgovernor
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                jsonrpc:
                  allOf:
                    - type: string
                      description: The JSON-RPC protocol version.
                      enum:
                        - '2.0'
                      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
                      description: The name of the RPC method to invoke.
                      enum:
                        - getInflationGovernor
                      example: getInflationGovernor
                      default: getInflationGovernor
              required:
                - jsonrpc
                - id
                - method
                - params
            examples:
              example:
                value:
                  jsonrpc: '2.0'
                  id: db16f277-1a22-41ff-9f85-f37e2cd77900
                  method: getInflationGovernor
      responses:
        '200':
          description: Successfully retrieved inflation governor information.
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    allOf:
                      - type: string
                        description: The JSON-RPC protocol version.
                        enum:
                          - '2.0'
                        example: '2.0'
                  id:
                    allOf:
                      - type: string
                        description: Identifier matching the request.
                        example: '1'
                  result:
                    allOf:
                      - type: object
                        description: >-
                          Comprehensive parameters defining Solana's long-term
                          monetary policy and inflation model.
                        properties:
                          initial:
                            type: number
                            format: float
                            description: >-
                              Starting annual inflation rate at the beginning of
                              Solana's mainnet (decimal format, e.g., 0.08 =
                              8%).
                            example: 0.15
                          terminal:
                            type: number
                            format: float
                            description: >-
                              Long-term sustainable inflation rate that the
                              system will eventually reach and maintain
                              indefinitely.
                            example: 0.015
                          taper:
                            type: number
                            format: float
                            description: >-
                              Annual rate at which inflation decreases from
                              initial to terminal rate (disinflationary schedule
                              speed).
                            example: 0.15
                          foundation:
                            type: number
                            format: float
                            description: >-
                              Percentage of total inflation allocated to the
                              Solana Foundation for ecosystem development.
                            example: 0.05
                          foundationTerm:
                            type: number
                            format: float
                            description: >-
                              Duration in years for which the foundation
                              receives an allocation from inflation.
                            example: 7
              examples:
                example:
                  value:
                    jsonrpc: '2.0'
                    id: db16f277-1a22-41ff-9f85-f37e2cd77900
                    result:
                      initial: 0.15
                      terminal: 0.015
                      taper: 0.15
                      foundation: 0.05
                      foundationTerm: 7
      security:
        - ApiKeyQuery: []
components:
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api_key

````