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

# getRecentPrioritizationFees

> 최근 블록의 우선 순위 수수료 목록을 반환합니다.



## OpenAPI

````yaml ko/openapi/rpc-http/getRecentPrioritizationFees.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: 메인넷 RPC 엔드포인트
  - url: https://devnet.helius-rpc.com
    description: Devnet RPC 엔드포인트
security: []
paths:
  /:
    post:
      tags:
        - RPC
      summary: getRecentPrioritizationFees
      description: |
        Solana 네트워크의 트랜잭션에 의해 지불된 최근 우선 수수료 수준을 조회합니다.
        이 동적 수수료 시장 API는 트랜잭션 가격 동향에 대한 통찰력을 제공하여
        네트워크 혼잡 시 최적의 수수료를 결정하는 데 도움을 줍니다. 최근 블록에서 계산 단위당 지불된
        역사적 데이터와 특정 계정에 대한 필터링을 선택적으로 반환합니다. 지갑, 거래소, DApps
        는 현재 네트워크 상태 및 수수료 시장 동향에 따라 경쟁력 있는 수수료 수준을 설정하여
        적시 트랜잭션 확인을 보장하는 데 필수적입니다.
      operationId: getRecentPrioritizationFees
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - jsonrpc
                - id
                - method
              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:
                    - getRecentPrioritizationFees
                  example: getRecentPrioritizationFees
                  default: getRecentPrioritizationFees
                params:
                  type: array
                  description: 계정 주소의 선택적 배열입니다.
                  items:
                    type: array
                    description: 기본 58로 인코딩된 문자열로 최대 128개의 계정 주소 배열입니다.
                    items:
                      type: string
                      description: 이 계정에 대한 기록을 포함하는 우선 수수료를 필터링하기 위한 특정 Solana 계정 주소입니다.
                      example: CxELquR1gPP8wHe33gZ4QxqGB3sZ9RSwsJ2KshVewkFY
      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: array
                    description: 최근 우선 순위 수수료 목록입니다.
                    items:
                      type: object
                      description: 특정 슬롯의 우선 수수료 세부 정보입니다.
                      properties:
                        slot:
                          type: integer
                          description: 이 우선 수수료 수준이 관찰된 Solana 블록체인 슬롯 번호입니다.
                          example: 348125
                        prioritizationFee:
                          type: integer
                          description: 이 슬롯의 트랜잭션에 의해 지불된 계산 단위당 마이크로 램포트에서의 우선 수수료 비율입니다.
                          example: 1234
        '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 키입니다.
        [dashboard](https://dashboard.helius.dev/api-keys)에서 무료로 받을 수 있습니다.

````