Get Wallet Summary
Retrieves wallet summary information for a specific node, including balance details and rent amount due.
Request
GET /v2/admin/node/{node_id}/summary
Parameters
| Name | Type | In | Description |
|---|---|---|---|
node_id | string | path | Required. The ID of the node to retrieve wallet summary for |
Headers
| Name | Description |
|---|---|
Authorization | Required. Bearer token for authentication |
Example
curl --request GET \
--url '\{\{baseUrl\}\}/v2/admin/node/67d5fcdcde5fad5c1fb37d26/summary' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...' \
Response
{
"stable_currencies": [
{
"currency_token": {
"id": "68fb4de0d622a0564999aeb7",
"node_id": "665ae536a6392b75cfd40352",
"type": 1,
"status": 3,
"name": "DigitalOceanCoin",
"symbol": "DGCN",
"total_supply": 0,
"description": "Digitalocean coin",
"decimals": 6,
"meta": {
"logo": {
"url": "https://fra1.digitaloceanspaces.com/apex/dev/currency-token/68fb4de0d622a0564999aeb7/logo/c92b945b-c846-442b-9019-888f3b4d39df.png",
"hash": "eb7dd8fc9d7d1e5f92b4cb9c1f3fba1537bf1ef007a77d4f7af918928d590de8"
}
},
"contract": {
"address": "0xd54549a98607c71cf67a4e0e83d84094971df3b7",
"tx_hash": "0xa4d1bbe5bc5309bce7c44c0c8259e4b8d59b80b7395e4acc047968340897c357"
},
"is_active": false,
"created_at": "2025-10-24T09:58:56.792Z",
"updated_at": "2025-10-26T21:50:10.499Z"
},
"amount": 0
}
],
"balance_native": 0.10861192205980251,
"balance_native_symbol": "ETH",
"balance_native_logo": "https://s3.tokenizationtr.com/currencies/eth.svg",
"rent_amount_due": null
}
Response Fields
| Field | Type | Description |
|---|---|---|
stable_currencies | array | List of balances for stable currency tokens |
stable_currencies[].currency_token | object | Currency token metadata object |
stable_currencies[].amount | number | Token balance amount |
balance_native | number | Native coin balance (e.g., ETH) |
balance_native_symbol | string | Native coin symbol |
balance_native_logo | string | Native coin logo URL |
rent_amount_due | number or null | Amount of rent due (null if none) |
Status Codes
| Status Code | Description |
|---|---|
| 200 | Success |
| 401 | Unauthorized - Invalid or missing authentication token |
| 404 | Not Found - Node ID does not exist |
| 500 | Internal Server Error |