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

# getInflationRate



## OpenAPI

````yaml getinflationrate 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: getInflationRate
      operationId: getinflationrate
      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:
                        - getInflationRate
                      example: getInflationRate
                      default: getInflationRate
              required:
                - jsonrpc
                - id
                - method
                - params
            examples:
              example:
                value:
                  jsonrpc: '2.0'
                  id: db16f277-1a22-41ff-9f85-f37e2cd77900
                  method: getInflationRate
      responses:
        '200':
          description: Successfully retrieved inflation rate 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: >-
                          Detailed breakdown of current Solana tokenomics
                          inflation metrics.
                        properties:
                          total:
                            type: number
                            format: float
                            description: >-
                              Current total annual inflation rate across the
                              entire Solana network (decimal format, e.g., 0.08
                              = 8%).
                            example: 0.149
                          validator:
                            type: number
                            format: float
                            description: >-
                              Portion of inflation allocated to validator
                              staking rewards distributed to validators and
                              delegators.
                            example: 0.148
                          foundation:
                            type: number
                            format: float
                            description: >-
                              Portion of inflation allocated to the Solana
                              Foundation for ongoing development and ecosystem
                              growth.
                            example: 0.001
                          epoch:
                            type: integer
                            description: >-
                              Specific Solana epoch number for which these
                              inflation rate metrics apply.
                            example: 100
              examples:
                example:
                  value:
                    jsonrpc: '2.0'
                    id: db16f277-1a22-41ff-9f85-f37e2cd77900
                    result:
                      total: 0.149
                      validator: 0.148
                      foundation: 0.001
                      epoch: 100
      security:
        - ApiKeyQuery: []
components:
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api_key

````