Skip to main content

Get Node Fee

Retrieves the fee values configured for a specific node.

Request

GET /v2/fees/nodes/:id

Headers

NameDescription
AuthorizationRequired. Bearer token for authentication

Path Parameters

NameTypeDescription
idstringRequired. The ID of the node to get fee values for

Example

curl --request GET \
--url '\{\{baseUrl\}\}/v2/fees/nodes/680be1f55d63bcee848d38e7' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...'

Response

{
"id": "680be1f55d63bcee848d38e7",
"entity": 3,
"node_id": "680bdf195d63bcee848d38e6",
"value": {
"tokenization": {
"asset_tokenization": {
"id": 0,
"value": 10
},
"tokenized_asset_sales": {
"id": 0,
"value": 11
},
"management": {
"id": 0,
"value": 12
}
},
"secondary_market": {
"buy_order": {
"id": 0,
"value": 13
},
"sell_order": {
"id": 0,
"value": 14
},
"otc_sale": {
"id": 0,
"value": 15
}
},
"lending": {
"borrower": {
"id": 0,
"value": 16
},
"lending": {
"id": 0,
"value": 17
},
"liquidation": {
"id": 0,
"value": 18
}
}
},
"categories": null
}

Response Fields

FieldTypeDescription
idstringUnique ID of the fee configuration
entityintegerEntity type identifier
node_idstringID of the node this fee configuration belongs to
valueobjectFee values for different operations
value.tokenizationobjectTokenization related fees
value.secondary_marketobjectSecondary market related fees
value.lendingobjectLending related fees
categoriesnullReserved for future use

Status Codes

Status CodeDescription
200Success - Node fee details retrieved successfully
401Unauthorized - Invalid or missing authentication token
404Not Found - Node with specified ID not found
500Internal Server Error