getRecentPrioritizationFees
Returns a list of prioritization fees from recent blocks. This method uses 160 credits from your daily balance.
Parameters
- address: (array) [optional] - Array of account addresses (up to a maximum of 128 addresses), as- base58encoded strings.
Returns
result - An array of objects with the following fields:
- prioritizationFee- The prioritization fee value.
- slot- The slot number associated with the prioritization fee.
Request
- curl
curl https://solana-mainnet.infura.io/v3/<YOUR-API-KEY> \
  -X POST \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0", "id":1, "method":"getRecentPrioritizationFees", "params": [["CxELquR1gPP8wHe33gZ4QxqGB3sZ9RSwsJ2KshVewkFY"]]}'
Response
- JSON
{
  "jsonrpc": "2.0",
  "result": [
    {
      "prioritizationFee": 0,
      "slot": 372976610
    },
    ...
    {
      "prioritizationFee": 0,
      "slot": 372976759
    }
  ],
  "id": 1
}