> For the complete documentation index, see [llms.txt](/llms.txt).

# `getRecentPrioritizationFees`

Returns a list of prioritization fees from recent blocks. This method uses [160 credits](/services/get-started/pricing/) from your daily balance.

## Parameters[​](#parameters "Direct link to Parameters")

- `address`: (array) _[optional]_ - Array of account addresses (up to a maximum of 128 addresses), as `base58` encoded strings.

## Returns[​](#returns "Direct link to 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[​](#request "Direct link to 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[​](#response "Direct link to Response")

- JSON

```
{
  "jsonrpc": "2.0",
  "result": [
    {
      "prioritizationFee": 0,
      "slot": 372976610
    },
    ...
    {
      "prioritizationFee": 0,
      "slot": 372976759
    }
  ],
  "id": 1
}

```
