RSS3 Documentation

Retrieve snapshots of staker count

Retrieve snapshots of the total staker count over time. This endpoint returns an array of objects, each containing the date and the corresponding count of stakers on that date.

GET
/nta/snapshots/stakers/count
/nta/snapshots/stakers/count
curl -X GET "https://gi.rss3.io/nta/snapshots/stakers/count"

A successful response containing snapshots of the total staker count over time. Each entry in the data array includes the date and the count of stakers on that date.

{
  "data": [
    {
      "date": "2024-03-10",
      "count": 1
    }
  ]
}