Skip to main content

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

NameTypeInDescription
node_idstringpathRequired. The ID of the node to retrieve wallet summary for

Headers

NameDescription
AuthorizationRequired. 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

FieldTypeDescription
stable_currenciesarrayList of balances for stable currency tokens
stable_currencies[].currency_tokenobjectCurrency token metadata object
stable_currencies[].amountnumberToken balance amount
balance_nativenumberNative coin balance (e.g., ETH)
balance_native_symbolstringNative coin symbol
balance_native_logostringNative coin logo URL
rent_amount_duenumber or nullAmount of rent due (null if none)

Status Codes

Status CodeDescription
200Success
401Unauthorized - Invalid or missing authentication token
404Not Found - Node ID does not exist
500Internal Server Error