Increase paid storage

Get increase paid storage

get

Returns a list of increase paid storage operations.

Query parameters
senderone of | nullableOptional

Filters by sender. Allowed fields for .eqx mode: none.

contractone of | nullableOptional

Filters by contract. Allowed fields for .eqx mode: none.

levelone of | nullableOptional

Filters by level.

timestampone of | nullableOptional

Filters by timestamp.

statusone of | nullableOptional

Filters by status (applied, failed, backtracked, skipped).

selectone of | nullableOptional

Specify comma-separated list of fields to include into response or leave it undefined to return full object. If you select single field, response will be an array of values in both .fields and .values modes.

sortone of | nullableOptional

Sorts operations by specified field. Supported fields: id (default), level, gasUsed, storageUsed, bakerFee, storageFee.

offsetone of | nullableOptional

Specifies which or how many items should be skipped

limitinteger · int32 · max: 10000Optional

Maximum number of items to return

Default: 100
quoteone ofOptional

Comma-separated list of ticker symbols to inject historical prices into response

Default: None
Responses
application/json
all of[]Optional
get
GET /v1/operations/increase_paid_storage HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text",
    "id": 1,
    "level": 1,
    "timestamp": "2025-04-23T18:50:29.433Z",
    "block": "text",
    "hash": "text",
    "sender": {
      "alias": "text",
      "address": "text"
    },
    "counter": 1,
    "gasLimit": 1,
    "gasUsed": 1,
    "storageLimit": 1,
    "storageUsed": 1,
    "bakerFee": 1,
    "storageFee": 1,
    "status": "text",
    "contract": {
      "alias": "text",
      "address": "text"
    },
    "amount": "text",
    "errors": [
      {
        "type": "text"
      }
    ],
    "quote": {
      "btc": 1,
      "eur": 1,
      "usd": 1,
      "cny": 1,
      "jpy": 1,
      "krw": 1,
      "eth": 1,
      "gbp": 1
    }
  }
]

Get increase paid storage by hash

get

Returns increase paid storage operation with specified hash.

Path parameters
hashstringRequired

Operation hash

Query parameters
quoteone ofOptional

Comma-separated list of ticker symbols to inject historical prices into response

Default: None
Responses
application/json
all of[]Optional
get
GET /v1/operations/increase_paid_storage/{hash} HTTP/1.1
Host: xtz-index.nownodes.io
Accept: */*
200Success
[
  {
    "type": "text",
    "id": 1,
    "level": 1,
    "timestamp": "2025-04-23T18:50:29.433Z",
    "block": "text",
    "hash": "text",
    "sender": {
      "alias": "text",
      "address": "text"
    },
    "counter": 1,
    "gasLimit": 1,
    "gasUsed": 1,
    "storageLimit": 1,
    "storageUsed": 1,
    "bakerFee": 1,
    "storageFee": 1,
    "status": "text",
    "contract": {
      "alias": "text",
      "address": "text"
    },
    "amount": "text",
    "errors": [
      {
        "type": "text"
      }
    ],
    "quote": {
      "btc": 1,
      "eur": 1,
      "usd": 1,
      "cny": 1,
      "jpy": 1,
      "krw": 1,
      "eth": 1,
      "gbp": 1
    }
  }
]