Skip to main content
GET
/
v1
/
rpc
/
getFeeEstimate
Get fee estimate
curl --request GET \
  --url https://api.kas.fyi/v1/rpc/getFeeEstimate \
  --header 'x-api-key: <api-key>'
{
  "estimate": {
    "priorityBucket": {
      "feerate": 1.5,
      "estimatedSeconds": 30
    },
    "normalBuckets": [
      {
        "feerate": 1.5,
        "estimatedSeconds": 30
      }
    ],
    "lowBuckets": [
      {
        "feerate": 1.5,
        "estimatedSeconds": 30
      }
    ]
  }
}

Cost

This endpoint costs 0.1 RU (Request Units) per call.

Authorizations

x-api-key
string
header
required

API key required for authentication. Get your API key at https://developer.kas.fyi

Response

200 - application/json

Fee estimate retrieved successfully

estimate
object
required

Fee estimate information

⌘I