RSS3 Documentation

Retrieve all chips

Retrieve a list of all chips. This endpoint allows users to filter the results by cursor, chip IDs, Node address, owner address, and to paginate through the results using cursor and limit parameters. The response includes detailed information about each chip and a cursor for pagination to fetch subsequent sets of results.

GET
/nta/chips
/nta/chips

Query Parameters

cursorstring

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

idarray<integer>

Array of chip IDs to filter the results.

nodestring

Node address

ownerstring

The address of the chip owner to filter the results.

limitinteger

Limit the number of results

Default: 200
curl -X GET "https://gi.rss3.io/nta/chips?cursor=string&id=%5B%0A++0%0A%5D&node=string&owner=string&limit=200"

A successful response containing a list of chips based on the provided filters. Each chip includes detailed information such as its ID, Node address, owner address, and metadata. The response also includes a cursor for pagination to fetch subsequent sets of results.

{
  "data": [
    {
      "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": "0x08d66b34054a174841e2361bd4746ff9f4905cc2"
}