Updates

Get bigmap updates

get

Returns a list of all bigmap updates.

Query parameters
bigmapone of | nullableOptional

Filters by bigmap ptr

pathone of | nullableOptional

Filters by bigmap path

contractone of | nullableOptional

Filters by bigmap contract

tagsone of | nullableOptional

Filters by bigmap tags: metadata, token_metadata, ledger

actionone of | nullableOptional

Filters by action

valueone of | nullableOptional

Filters by JSON value. Note, this query parameter supports the following format: ?value{.path?}{.mode?}=..., so you can specify a path to a particular field to filter by, for example: ?value.balance.gt=....

levelone of | nullableOptional

Filters by level

timestampone of | nullableOptional

Filters by timestamp

sortone of | nullableOptional

Sorts bigmaps by specified field. Supported fields: id (default), ptr, firstLevel, lastLevel, totalKeys, activeKeys, updates.

offsetone of | nullableOptional

Specifies which or how many items should be skipped

limitinteger · int32 · max: 10000Optional

Maximum number of items to return

Default: 100
michelineone ofOptional

Format of the bigmap key and value type: 0 - JSON, 2 - Micheline

Default: Json
string · enumOptionalPossible values:
Responses
200Success
application/json
get
GET /v1/bigmaps/updates HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "id": 1,
    "level": 1,
    "timestamp": "2025-07-13T23:17:11.669Z",
    "bigmap": 1,
    "contract": {
      "alias": "text",
      "address": "text"
    },
    "path": "text",
    "action": "text",
    "content": {
      "hash": "text",
      "key": null,
      "value": null
    }
  }
]