Get Platform Fee
Retrieves the platform commission values.
Request
GET /v2/fees/platforms/:id
Headers
| Name | Description |
|---|---|
Authorization | Required. Bearer token for authentication |
Path Parameters
| Name | Type | Description |
|---|---|---|
id | string | Required. Root node ID |
Example
curl --request GET \
--url '\{\{baseUrl\}\}/v2/fees/platforms/680be1f55d63bcee848d38e7' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...'
Response
{
"id": "680be1f55d63bcee848d38e7",
"entity": 2,
"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 - Platform fee details retrieved successfully |
| 401 | Unauthorized - Invalid or missing authentication token |
| 404 | Not Found - Platform with specified ID not found |
| 500 | Internal Server Error |