Skip to main content
GET
/
v1
/
rpc
/
estimateNetworkHashesPerSecond
Estimate network hashes per second
curl --request GET \
  --url https://api.kas.fyi/v1/rpc/estimateNetworkHashesPerSecond \
  --header 'x-api-key: <api-key>'
{
  "networkHashesPerSecond": "123456789012345"
}

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

Query Parameters

windowSize
number
required

Window size for the estimation

Example:

1000

startHash
string

Optional starting hash for the estimation

Response

200 - application/json

Network hash rate estimation retrieved successfully

networkHashesPerSecond
string
required

Estimated network hashes per second

Example:

"123456789012345"

⌘I