RSS3 Documentation

Retrieve snapshots of Node count

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

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

A successful response containing snapshots of Node counts over time. Each entry in the data array includes the date and the count of nodes on that date.

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