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

{
"balance_usdt": 0,
"balance_eth": 0.7,
"rent_amount_due": null
}

Response Fields

FieldTypeDescription
balance_usdtnumberThe USDT balance for the node's wallet
balance_ethnumberThe ETH balance for the node's wallet
rent_amount_duenumberAmount of rent due (null if no rent is due)

Status Codes

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