History

Get raw contract storage history

get

Returns raw contract storage historical values.

Path parameters
addressstringRequired

Contract address

Query parameters
lastIdinteger · int32Optional

Id of the last item received (for pagination)

Default: 0
limitinteger · int32 · max: 1000Optional

Maximum number of items to return

Default: 10
Responses
application/json
object[]Optional
get
GET /v1/contracts/{address}/storage/raw/history HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "id": 1,
    "level": 1,
    "timestamp": "2025-04-23T18:38:37.374Z",
    "operation": {
      "type": "text",
      "hash": "text",
      "counter": 1,
      "nonce": 1,
      "parameter": {
        "entrypoint": "text",
        "value": null
      }
    },
    "value": null
  }
]