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",
"version": "v2.0.0",
"node_contract_id": "67d6bc4c79cbf60512347a29"
},
"listing_contract": {
"address": "0xCBF3016C00C86979D4d395aDBF04C319dAD923b0",
"version": "v2.0.0",
"node_contract_id": "67d6bc4c79cbf60512347a29"
},
"rent_contract": {
"address": "0x88DF676a04639B723C00D995004BbD133f766aEF",
"version": "v2.0.0",
"node_contract_id": "67d6bc4c79cbf60512347a29"
},
"burn_contract": null,
"secondary_contract": {
"address": "0x298ab9290c81fdb0847c5ED02Df2809343C8c2A3",
"version": "v2.0.0",
"node_contract_id": "67d6bc4c79cbf60512347a29"
}
},
"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_contractobject/nullFee contract information (ContractInfo object, may be null)
contract.listing_contractobject/nullListing contract information (ContractInfo object, may be null)
contract.rent_contractobject/nullRent contract information (ContractInfo object, may be null)
contract.burn_contractobject/nullBurn contract information (ContractInfo object, may be null)
contract.secondary_contractobject/nullSecondary contract information (ContractInfo object, may be null)
contract.otc_contractobject/nullOTC contract information (ContractInfo object, may be null)
contract.diamond_cut_facetobject/nullDiamond cut facet contract information (ContractInfo object, may be null)
contract.diamondobject/nullDiamond contract information (ContractInfo object, may be null)
contract.diamond_loupe_facetobject/nullDiamond loupe facet contract information (ContractInfo object, may be null)
contract.ownership_facetobject/nullOwnership facet contract information (ContractInfo object, may be null)
contract.forwarder_facetobject/nullForwarder facet contract information (ContractInfo object, may be null)
contract.kyc_token_contractobject/nullKYC token contract information (ContractInfo object, may be null)

ContractInfo Object Fields

FieldTypeDescription
addressstringContract address on the blockchain
versionstringContract version (e.g., "v2.0.0")
node_contract_idstringID of the NodeContract document this contract belongs to
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