RSS3 Documentation

Retrieve all RSS3 Nodes

Retrieve the list of all RSS3 Nodes. This endpoint allows filtering by cursor, limit, and Node address.

GET
/nta/nodes
/nta/nodes

Query Parameters

cursorstring

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

limitinteger

Limit the number of results

Default: 50

nodestring

Node address

curl -X GET "https://gi.rss3.io/nta/nodes?cursor=string&limit=50&node=string"

A successful response containing a list of nodes. Each entry includes detailed information about the node.

[
  {
    "id": 18,
    "address": "0x69982e017acc0fde3d1542205089a8d3eafcd1b7",
    "name": "Natural Selection Labs",
    "description": "A Node operated by NSL.",
    "tax_rate_basis_points": 800,
    "is_public_good": false,
    "operation_pool_tokens": "724429065703690345869831",
    "staking_pool_tokens": "20798363499373370863570687",
    "total_shares": "17339500000000000000000000",
    "slashed_tokens": "0",
    "alpha": true,
    "status": "online",
    "last_heartbeat": 1718694464,
    "location": [
      {
        "country": "United States",
        "region": "",
        "city": "",
        "latitude": 37.751,
        "longitude": -97.822
      }
    ],
    "avatar": {
      "name": "Node Avatar",
      "description": "",
      "image": "https://gi.rss3.io/nta/nodes/0x69982E017Acc0FDE3d1542205089A8d3EAfcD1B7/avatar.svg"
    },
    "min_tokens_to_stake": "599739424417467944968",
    "apy": "0.3928765550642588002426864199264",
    "reliability_score": "0",
    "version": "v1.0.0",
    "type": "production",
    "created_at": 1710278898
  }
]