Skip to main content

View

Account

Endpoint {host}/matic/delegator

Method : GET

Request

Query Parameters

  • delegator_address* - string : Wallet Address.

Response

  • address: Wallet Address.
  • balance: Wallet $MATIC Balance.
  • reward: Reward $MATIC.
  • delegated: Delegated $MATIC.
  • unbond_nonces: Unbond Nonces.
  • unbonding: Unbonding List.
    • nonce: Unbonding Nonce.
    • amount: Unbonding Amount.
    • withdraw_epoch: Unbonding Withdraw Epoch.
Request
?delegator_address=0x470b93f99F8F6C589f57B5b29e81F5f83604Efc3
Response
{
"status": 1,
"status_service": "00",
"status_number": "F000001",
"status_code": "SSSSSS",
"message": "success get data",
"data": {
"address": "0x470b93f99F8F6C589f57B5b29e81F5f83604Efc3",
"balance": "14.230078830790868402",
"reward": "0",
"delegated": "0",
"unbond_nonces": 3,
"unbonding": [
{
"nonce": 1,
"amount": "0",
"withdraw_epoch": 59318
},
{
"nonce": 3,
"amount": "1412.7",
"withdraw_epoch": 60268
}
]
}
}

Unfrozen Resources

Endpoint {host}/tron/account

Method : GET

Request

Query Parameters

  • wallet_address* - string : Wallet Address.

Response

  • nonce: Unbonding Nonce.
  • amount: Unbonding Amount.
  • withdraw_epoch: Unbonding Withdraw Epoch.
Request
?delegator_address=0x470b93f99F8F6C589f57B5b29e81F5f83604Efc3
Response
{
"status": 1,
"status_service": "00",
"status_number": "F000001",
"status_code": "SSSSSS",
"message": "success get data",
"data": [
{
"nonce": 1,
"amount": "0",
"withdraw_epoch": 59318
},
{
"nonce": 3,
"amount": "1412.7",
"withdraw_epoch": 60268
}
]
}