Balance
Retrieve the current balance of an address
GET /v1/:currency/Addresses/:address
GET /v1/:currency/Addresses/:address
Retrieve the current balance of an address.
Request
Path Parameters
Attribute | Type | Description |
currency |
| The currency unit of the balance |
address |
| The public address associated with the transactions. |
Query Parameters
Attribute | Type | Description |
includeUnspentOutputs |
| Optional. Unspent transaction outputs of the address. Available only for BTC addresses and if |
Response
HTTP Status | Return Object |
200 |
Balance
Attribute | Type | Description |
Balance |
| A string representing how much balance in the currency unit (e.g., |
Currency |
| The currency unit of the balance |
UnspentOutputs |
| Unspent transaction outputs of the address. Available only for BTC addresses and if |
UnspentOutput
Attribute | Type | Description |
Amount |
| Bitcoin amount in the output index. |
TxHash |
| Hash of the transaction that contains the output. |
Index |
| Index of the output. |
Confirmations |
| The number of confirmations for the transaction |
Errors
HTTP Status | Error Code | Description |
400 |
| Invalid address format. |
400 |
| Invalid URL parameters |
500 |
| Server error. |
503 |
| Service unavailable for the specified currency |
Last updated