Skip to main content
GET
/
v2
/
addresses
/
{address_hash_param}
/
coin-balance-history-by-day
Get daily native coin balance snapshots for an address from previous 10 days
curl --request GET \
  --url http://localhost/api/v2/addresses/{address_hash_param}/coin-balance-history-by-day
{
  "days": 123,
  "items": [
    {
      "date": "2023-12-25",
      "value": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.blockscout.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

address_hash_param
string
required

Address hash in the path

Pattern: ^0x([A-Fa-f0-9]{40})$

Query Parameters

apikey
string

API key for rate limiting or for sensitive endpoints

key
string

Secret key for getting access to restricted resources

Response

Daily coin balance history for the specified address.

days
integer
items
CoinBalanceByDay · object[]