RSS3 Documentation

Retrieve Chips by chip id

Retrieve chip details using its unique ID. This endpoint returns comprehensive data about the chip, including its Node address, owner address, and metadata such as name, description, and image.

GET
/nta/chips/{chip_id}
/nta/chips/{chip_id}

Path Parameters

chip_id
Required
integer

The unique identifier of the chip to retrieve.

curl -X GET "https://gi.rss3.io/nta/chips/0"

A successful response containing detailed information about the specified chip. The data includes the chip's ID, Node address, owner address, and metadata such as name, description, and image.

{
  "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"
}