GET
/
addresses
/
{address_hash}
/
coin-balance-history
get address coin balance history
curl --request GET \
  --url https://eth.blockscout.com/api/v2/addresses/{address_hash}/coin-balance-history
{
  "items": [
    {
      "transaction_hash": "0x1f610ff9c1efad6b5a8bb6afcc0786cd7343f03f9a61e2544fcff908cedee924",
      "block_number": 1584930,
      "block_timestamp": "2022-08-02T07:18:05.000000Z",
      "delta": "-234959404",
      "value": "100232323"
    }
  ],
  "next_page_params": {
    "block_number": 27736955,
    "items_count": 50
  }
}

Path Parameters

address_hash
string
required

Address hash

Response

200
application/json

address

The response is of type object.