RSS3 Documentation

Retrieve a list of stakers and Nodes

Retrieve a list of stakers and their associated Nodes. This endpoint allows users to filter the results by staker address, Node address, and to paginate through the results using cursor and limit parameters. The response includes detailed information about each staker, node, and associated chips.

GET
/nta/stakings/stakings
/nta/stakings/stakings

Query Parameters

staker_addressstring

Staker address

node_addressstring

Node address

limitinteger

Limit the number of results

Default: 20

cursorstring

Specify the cursor used for pagination. This helps in retrieving the next set of results in a paginated response.

curl -X GET "https://gi.rss3.io/nta/stakings/stakings?staker_address=string&node_address=string&limit=20&cursor=string"

A successful response containing a list of stakers and their associated nodes. Each entry in the data array represents a staker and includes detailed information about the staker, the Node they are associated with, and any associated chips. The response also includes a cursor for pagination to fetch subsequent sets of results. This allows users to retrieve large datasets incrementally.

{
  "data": [
    {
      "staker": "0x3b6d02a24df681ffdf621d35d70aba7adaac07c1",
      "node": "0x08d66b34054a174841e2361bd4746ff9f4905cc2",
      "chips": {
        "total": 0,
        "showcase": [
          {
            "id": 1690,
            "node": "0x08d66b34054a174841e2361bd4746ff9f4905cc2",
            "owner": "0xc8b960d09c0078c18dcbe7eb9ab9d816bcca8944",
            "metadata": {
              "name": "Open Chips #1690",
              "description": "Chip Monsters are unique creatures living in the RSS3 Network, each one special because of where it was born. They represent the idea of FREE and OPEN INFORMATION, thriving in a world that values sharing and being different. These Chip Monsters are more than just digital; they symbolize the excitement and importance of being unique in a connected digital world.",
              "image": "https://gi.rss3.io/nta/chips/1690/image.svg"
            },
            "value": "500000000000000000000",
            "latest_value": "613891695796128425340"
          }
        ]
      }
    }
  ],
  "cursor": "0xc7d6378960bd3374c31ce6223df0e79355ff3dc4b6dccf28afe84487321ef9fb"
}