List all accounts
Returns a summary for each account known to the node — frontier hash, block count, last block timestamp, and per-asset balances. Paginated with ?offset and ?limit.
Response Body
application/json
curl -X GET "https://ldn.core.test.network/accounts"[
{
"address": "a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4a5b6c7d8e9f0a1b2",
"balances": {
"XE": "1000000",
"XUSD": "500000"
},
"block_count": 42,
"frontier": "f2a3b4c5d6e7a8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b3"
}
]