Get Node Fee
Retrieves the fee values configured for a specific node.
Request
GET /v2/fees/nodes/:id
Headers
| Name | Description |
|---|---|
Authorization | Required. Bearer token for authentication |
Path Parameters
| Name | Type | Description |
|---|---|---|
id | string | Required. 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
| Field | Type | Description |
|---|---|---|
id | string | Unique ID of the fee configuration |
entity | integer | Entity type identifier |
node_id | string | ID of the node this fee configuration belongs to |
value | object | Fee values for different operations |
value.tokenization | object | Tokenization related fees |
value.secondary_market | object | Secondary market related fees |
value.lending | object | Lending related fees |
categories | null | Reserved for future use |
Status Codes
| Status Code | Description |
|---|---|
| 200 | Success - Node fee details retrieved successfully |
| 401 | Unauthorized - Invalid or missing authentication token |
| 404 | Not Found - Node with specified ID not found |
| 500 | Internal Server Error |