> ## 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 ko/openapi/rpc-http/getInflationRate.yaml POST /
openapi: 3.1.0
info:
  title: Solana RPC API
  version: 1.0.0
  description: 토큰 경제학 API는 총 발행률 및 검증자와 재단 간의 배분을 포함하여 현재 Solana 인플레이션 지표를 검색합니다.
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
  - url: https://mainnet.helius-rpc.com
    description: 메인넷 RPC 엔드포인트
  - url: https://devnet.helius-rpc.com
    description: Devnet RPC 엔드포인트
security: []
paths:
  /:
    post:
      tags:
        - RPC
      summary: getInflationRate
      description: >
        현재 Solana 네트워크의 인플레이션 비율 및 그 배분을 검색합니다.

        이 토큰 경제학 API는 블록체인의 통화정책에 대한 세부 정보를 제공하며,

        현재 연간 인플레이션 비율과 새로 생성된 SOL 토큰이

        검증자(스테이킹 보상으로서)와 Solana 재단 간에 어떻게 분배되는지를 보여줍니다.

        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 재단에 할당된 인플레이션의 부분입니다.
                        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: Invalid params
                id: '1'
        '401':
          description: 허가되지 않음 - 잘못되었거나 누락된 API 키입니다.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32001
                  message: Unauthorized
                id: '1'
        '429':
          description: 요청이 너무 많음 - 속도 제한 초과입니다.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32005
                  message: Too many requests
                id: '1'
        '500':
          description: 내부 서버 오류 - 서버에서 오류가 발생했습니다.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32603
                  message: Internal error
                id: '1'
        '503':
          description: 서비스를 사용할 수 없음 - 서비스가 일시적으로 사용할 수 없습니다.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32002
                  message: Service unavailable
                id: '1'
        '504':
          description: 게이트웨이 시간 초과 - 요청 시간이 초과되었습니다.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                jsonrpc: '2.0'
                error:
                  code: -32003
                  message: Gateway timeout
                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)에서 무료로 받을
        수 있습니다.

````