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

# getInflationRate

> 現在のエポックに対する特定のインフレ値を返します。



## OpenAPI

````yaml ja/openapi/rpc-http/getInflationRate.yaml POST /
openapi: 3.1.0
info:
  title: Solana RPC API
  version: 1.0.0
  description: Solanaのインフレーション指標を取得するためのトークンエコノミクスAPIで、トータル発行率およびバリデーターと財団間の配分を含みます。
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
  - url: https://mainnet.helius-rpc.com
    description: Mainnet RPCエンドポイント
  - url: https://devnet.helius-rpc.com
    description: Devnet RPCエンドポイント
security: []
paths:
  /:
    post:
      tags:
        - RPC
      summary: getInflationRate
      description: >-
        現在のSolanaネットワークのインフレーション率とその配分を取得します。
        このトークノミクスAPIは、ブロックチェーンの通貨政策に関する詳細を提供し、現在の年間インフレーション率と、新たに発行されたSOLトークンがバリデーター（ステーキング報酬として）とSolana
        Foundationの間でどのように配分されるかを示します。
        Solanaは、インフレーションがその初期率から徐々に減少し、長期的な安定率に達するまでのディスインフレーション政策を採用しています。金融分析者、経済研究者、ステーキング計算機、利回り予測ツール、およびSolanaのインフレーションモデルを収益予測やトークン供給予測に組み込む必要のあるアプリケーションにとって重要です。
      operationId: getInflationRate
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                jsonrpc:
                  type: string
                  description: JSON-RPCプロトコルバージョン。
                  enum:
                    - '2.0'
                  example: '2.0'
                  default: '2.0'
                id:
                  type: string
                  description: リクエストのための一意の識別子。
                  example: '1'
                  default: '1'
                method:
                  type: string
                  description: 呼び出すRPCメソッドの名前。
                  enum:
                    - getInflationRate
                  example: getInflationRate
                  default: getInflationRate
      responses:
        '200':
          description: インフレーション率情報の取得に成功しました。
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                    description: JSON-RPCプロトコルバージョン。
                    enum:
                      - '2.0'
                    example: '2.0'
                  id:
                    type: string
                    description: リクエストに一致する識別子。
                    example: '1'
                  result:
                    type: object
                    description: 現在のSolanaトークノミクスインフレーション指標の詳細な内訳。
                    properties:
                      total:
                        type: number
                        format: float
                        description: Solanaネットワーク全体での現在の年間インフレーション総率（小数形式、例：0.08 = 8%）。
                        example: 0.149
                      validator:
                        type: number
                        format: float
                        description: バリデータおよびデリゲータに分配されるバリデータステーキング報酬としてのインフレーション配分部分。
                        example: 0.148
                      foundation:
                        type: number
                        format: float
                        description: >-
                          Solana
                          Foundationに配分されるインフレーションの一部で、継続的な開発とエコシステムの成長を目的としています。
                        example: 0.001
                      epoch:
                        type: integer
                        description: これらのインフレーション率指標が適用される特定のSolanaエポック番号。
                        example: 100
        '400':
          description: 不正なリクエスト - 無効なリクエストパラメータまたは不正なリクエスト形式。
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32602
                  message: 無効なパラメータ
                id: '1'
        '401':
          description: 認証が必要 - 無効または欠落しているAPIキー。
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32001
                  message: 認証されていません
                id: '1'
        '429':
          description: リクエストが多すぎます - レート制限を超えました。
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32005
                  message: リクエストが多すぎます
                id: '1'
        '500':
          description: 内部サーバーエラー - サーバーでエラーが発生しました。
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32603
                  message: 内部エラー
                id: '1'
        '503':
          description: サービス利用不可 - サービスが一時的に利用できません。
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32002
                  message: サービス利用不可
                id: '1'
        '504':
          description: ゲートウェイタイムアウト - リクエストタイムアウト。
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32003
                  message: ゲートウェイタイムアウト
                id: '1'
      security:
        - ApiKeyQuery: []
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        jsonrpc:
          type: string
          description: JSON-RPCプロトコルバージョン。
          enum:
            - '2.0'
          example: '2.0'
        error:
          type: object
          properties:
            code:
              type: integer
              description: エラーコード。
              example: -32602
            message:
              type: string
              description: エラーメッセージ。
            data:
              type: object
              description: エラーに関する追加データ。
        id:
          type: string
          description: リクエストに一致する識別子。
          example: '1'
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api-key
      description: >-
        あなたのHelius
        APIキー。無料で[ダッシュボード](https://dashboard.helius.dev/api-keys)から取得できます。

````