Skip to main content
POST
curl --request POST \
  --url 'https://rpc-mainnet.solanatracker.io/?api_key=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "jsonrpc": "2.0",
  "id": "1",
  "method": "getPriorityFeeEstimate",
  "params": [
    {
      "transaction": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEDArczbMia1tLmq7zz4DinMNN0pJ1JtLdqIJPUw3YrGCzYAMHBsgN27lcgB6H2WQvFgyZuJYHa46puOQo9yQ8CVQbd9uHXZaGT2cvhRs7reawctIXtX1s3kTqM9YV+/wCp20C7Wj2aiuk5TReAXo+VTVg8QTHjs0UjNMMKCvpzZ+ABAgEBARU=",
      "options": {
        "recommended": true
      }
    }
  ]
}
'
{
"jsonrpc": "2.0",
"result": {
"priorityFeeEstimate": 10000
},
"id": "1"
}

Authorizations

api_key
string
query
required

Body

application/json
jsonrpc
enum<string>
required
Available options:
2.0
id
required

Request identifier

method
enum<string>
required
Available options:
getPriorityFeeEstimate
params
object[]
required
Required array length: 1 element

Response

200 - application/json

Successful response

jsonrpc
enum<string>
Available options:
2.0
result
object

Priority fee estimation result

id