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

# getRecentPrioritizationFees

> Runs the Solana RPC `getRecentPrioritizationFees` method.



## OpenAPI

````yaml getrecentprioritizationfees post /
openapi: 3.1.0
info:
  title: Solana RPC
  version: 1.0.0
  description: Solana RPC HTTP method reference.
servers:
  - url: https://rpc-mainnet.solanatracker.io
    description: Mainnet RPC endpoint
security: []
paths:
  /:
    post:
      summary: Run `getRecentPrioritizationFees`
      description: Runs the Solana RPC `getRecentPrioritizationFees` method.
      operationId: getrecentprioritizationfees
      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:
                        - getRecentPrioritizationFees
                      example: getRecentPrioritizationFees
                      default: getRecentPrioritizationFees
                params:
                  allOf:
                    - type: array
                      description: Optional array of account addresses.
                      items:
                        type: array
                        description: >-
                          An array of account addresses (maximum 128), as
                          base-58 encoded strings.
                        items:
                          type: string
                          description: >-
                            Specific Solana account address to filter for
                            priority fees involving writes to this account.
                          example: CxELquR1gPP8wHe33gZ4QxqGB3sZ9RSwsJ2KshVewkFY
              required:
                - jsonrpc
                - id
                - method
            examples:
              example:
                value:
                  jsonrpc: '2.0'
                  id: db16f277-1a22-41ff-9f85-f37e2cd77900
                  method: getRecentPrioritizationFees
                  params:
                    - - CxELquR1gPP8wHe33gZ4QxqGB3sZ9RSwsJ2KshVewkFY
      responses:
        '200':
          description: Successfully retrieved recent prioritization fees.
          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: array
                        description: List of recent prioritization fees.
                        items:
                          type: object
                          description: Details of prioritization fees in a specific slot.
                          properties:
                            slot:
                              type: integer
                              description: >-
                                Solana blockchain slot number where these
                                priority fee levels were observed.
                              example: 348125
                            prioritizationFee:
                              type: integer
                              description: >-
                                Priority fee rate in micro-lamports per compute
                                unit paid by transactions in this slot.
                              example: 1234
              examples:
                example:
                  value:
                    jsonrpc: '2.0'
                    id: db16f277-1a22-41ff-9f85-f37e2cd77900
                    result:
                      - slot: 348125
                        prioritizationFee: 1234
      security:
        - ApiKeyQuery: []
components:
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api_key

````