Skip to main content

Get Node

Retrieves information about a specific node in the system.

Request

GET /v2/admin/node/{node_id}

Parameters

NameTypeInDescription
node_idstringpathRequired. The ID of the node to retrieve

Headers

NameDescription
AuthorizationRequired. Bearer token for authentication

Example

curl --request GET \
--url '\{\{baseUrl\}\}/v2/admin/node/67d6bc4c79cbf60512347a29' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...' \

Response

{
"id": "67d6bc4c79cbf60512347a29",
"parent_id": "67a68d4462dd1d00073d0af3",
"parent_name": "Hiper Token",
"name": "Tostik 4",
"type": 2,
"status": 3,
"contract": {
"wallet": {
"public_key": "0x86123D7398a5a2C8b847b37B34eB499e07dE3A76"
},
"fee_contract_address": "0x10FfF7e0Ff052cEb569CFA74adc34469E1EFbDF8",
"listing_contract_address": "0xCBF3016C00C86979D4d395aDBF04C319dAD923b0",
"rent_contract_address": "0x88DF676a04639B723C00D995004BbD133f766aEF",
"burn_contract_address": null,
"secondary_contract_address": "0x298ab9290c81fdb0847c5ED02Df2809343C8c2A3"
},
"meta": null,
"int_id": 37,
"path": "1.37",
"listed_token_count": 0,
"supervisor_count": 0,
"created_at": "2025-03-16T11:55:56.532Z"
}

Response Fields

FieldTypeDescription
idstringUnique identifier of the node
parent_idstringID of the parent node
parent_namestringName of the parent node
namestringName of the node
typeintegerType of the node
statusintegerStatus code of the node
contractobjectContract details for the node
contract.wallet.public_keystringPublic key of the node's wallet
contract.fee_contract_addressstringAddress of the fee contract (may be null)
contract.listing_contract_addressstringAddress of the listing contract (may be null)
contract.rent_contract_addressstringAddress of the rent contract (may be null)
contract.burn_contract_addressstringAddress of the burn contract (may be null)
contract.secondary_contract_addressstringAddress of the secondary contract (may be null)
metaobjectAdditional metadata (may be null)
int_idintegerInternal ID of the node
pathstringPath representation of the node hierarchy
listed_token_countintegerNumber of tokens listed under the node
supervisor_countintegerNumber of supervisors associated with the node
created_atstringISO 8601 timestamp of when the node was created

Status Codes

Status CodeDescription
200Success
401Unauthorized - Invalid or missing authentication token
404Not Found - Node ID does not exist
500Internal Server Error