---
title: "Get block by level"
method: GET
path: "/v1/blocks/{level}"
tags: ["Blocks"]
---

# Get block by level

`GET /v1/blocks/{level}`

Returns a block at the specified level.

## Path parameters

- `level` integer, required

## Query parameters

- `operations` boolean
- `micheline` 'Json' | 'JsonString' | 'Raw' | 'RawString'
- `quote` 'None' | 'Btc' | 'Eur' | 'Usd' | 'Cny' | 'Jpy' | 'Krw' | 'Eth' | 'Gbp'

## Response `200`

- Block
  - `cycle` integer — Index of the cycle
  - `level` integer — Height of the block from the genesis
  - `hash` string, required — Block hash
  - `timestamp` string, date-time — Datetime at which the block is claimed to have been created (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
  - `proto` integer — Protocol code, representing a number of protocol changes since genesis (mod 256, but `-1` for the genesis block)
  - `payloadRound` integer — Round at which the block payload was proposed
  - `blockRound` integer — Round at which the block was produced
  - `attestationPower` integer — Recorder attestation power
  - `attestationCommittee` integer — Total attestation committee power
  - `deposit` integer — Security deposit frozen on the baker's account for producing the block (micro tez)
  - `rewardDelegated` integer — Portion of fixed reward, corresponding to delegated stake, paid to payload proposer's liquid balance (micro tez) (it is not frozen and can be spent immediately).
  - `rewardStakedOwn` integer — Portion of fixed reward, corresponding to baker's own stake, paid to payload proposer's own staked balance (micro tez) (it is frozen and belongs to the baker).
  - `rewardStakedEdge` integer — Portion of fixed reward, corresponding to baker's edge from external stake, paid to payload proposer's own staked balance (micro tez) (it is frozen and belongs to the baker).
  - `rewardStakedShared` integer — Portion of fixed reward, corresponding to baker's external stake, paid to payload proposer's external staked balance (micro tez) (it is frozen and belongs to baker's stakers).
  - `bonusDelegated` integer — Portion of bonus reward, corresponding to delegated stake, paid to block producer's liquid balance (micro tez) (it is not frozen and can be spent immediately).
  - `bonusStakedOwn` integer — Portion of bonus reward, corresponding to baker's own stake, paid to block producer's own staked balance (micro tez) (it is frozen and belongs to the baker).
  - `bonusStakedEdge` integer — Portion of bonus reward, corresponding to baker's edge from external stake, paid to block producer's own staked balance (micro tez) (it is frozen and belongs to the baker).
  - `bonusStakedShared` integer — Portion of fixed reward, corresponding to baker's external stake, paid to block producer's external staked balance (micro tez) (it is frozen and belongs to baker's stakers).
  - `fees` integer — Total fee gathered from operations, included into the block
  - `nonceRevealed` boolean — Status of the seed nonce revelation `true` - seed nonce revealed `false` - there's no `seed_nonce_hash` in the block or seed nonce revelation has missed
  - `proposer` Alias
    - `alias` string, nullable — Account alias name (off-chain data).
    - `address` string, required — Account address (public key hash).
  - `producer` Alias
    - `alias` string, nullable — Account alias name (off-chain data).
    - `address` string, required — Account address (public key hash).
  - `software` SoftwareAlias
    - `version` string, required — Software version (commit tag)
    - `date` string, date-time — Date of the commit or when the software was first seen
  - `lbToggle` boolean, nullable — Liquidity baking toggle (`true` if enabled, `false` if disabled, or `null` if the baker says 'pass')
  - `lbToggleEma` integer — Liquidity baking escape EMA value with precision of 1000000 for integer computation
  - `attestations` AttestationOperation[], nullable — List of attestation (is operation, which specifies the head of the chain as seen by the attester of a given slot) operations, included in the block
    - `type` string — Type of the operation, `attestation` - is operation, which specifies the head of the chain as seen by the attester of a given slot. The attester is randomly selected to be included in the block that extends the head of the chain as specified in this operation. A block with more attestations improves the weight of the chain and increases the likelihood of that chain being the canonical one.
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `delegate` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `power` integer — Attestation power
    - `deposit` integer — Security deposit frozen on the baker's account
    - `rewards` integer — Reward of the baker for the operation
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
    - `slots` integer — **DEPRECATED**
  - `preattestations` PreattestationOperation[], nullable — List of preattestation operations, included in the block
    - `type` string — Type of the operation, `preattestation`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `delegate` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `power` integer — Attestation power
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
    - `slots` integer — **DEPRECATED**
  - `proposals` ProposalOperation[], nullable — List of proposal (is used by bakers (delegates) to submit and/or upvote proposals to amend the protocol) operations, included in the block
    - `type` string — Type of the operation, `proposal` - is used by bakers (delegates) to submit and/or upvote proposals to amend the protocol
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `period` PeriodInfo, required
      - `index` integer — Voting period index, starting from zero
      - `epoch` integer — Voting epoch index, starting from zero
      - `kind` string, required — Kind of the voting period `proposal` - delegates can submit protocol amendment proposals using the proposal operation `exploration` - bakers (delegates) may vote on the top-ranked proposal from the previous Proposal Period using the ballot operation `testing` - If the proposal is approved in the Exploration Period, the testing (or 'cooldown') period begins and bakers start testing the new protocol `promotion` - delegates can cast one vote to promote or not the tested proposal using the ballot operation `adoption` - after the proposal is actually accepted, the ecosystem has some time to prepare to the upgrade
      - `firstLevel` integer — The height of the block in which the period starts
      - `lastLevel` integer — The height of the block in which the period ends
    - `proposal` ProposalAlias, required
      - `alias` string, nullable — Alias of the proposal
      - `hash` string, required — Hash of the proposal, which representing a tarball of concatenated .ml/.mli source files
    - `delegate` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `votingPower` integer — Baker's voting power
    - `duplicated` boolean — Indicates whether proposal upvote has already been pushed. Duplicated proposal operations are not counted when selecting proposal-winner.
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `ballots` BallotOperation[], nullable — List of ballot (is used to vote for a proposal in a given voting cycle) operations, included in the block
    - `type` string — Type of the operation, `ballot` - is used to vote for a proposal in a given voting cycle
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `period` PeriodInfo, required
      - `index` integer — Voting period index, starting from zero
      - `epoch` integer — Voting epoch index, starting from zero
      - `kind` string, required — Kind of the voting period `proposal` - delegates can submit protocol amendment proposals using the proposal operation `exploration` - bakers (delegates) may vote on the top-ranked proposal from the previous Proposal Period using the ballot operation `testing` - If the proposal is approved in the Exploration Period, the testing (or 'cooldown') period begins and bakers start testing the new protocol `promotion` - delegates can cast one vote to promote or not the tested proposal using the ballot operation `adoption` - after the proposal is actually accepted, the ecosystem has some time to prepare to the upgrade
      - `firstLevel` integer — The height of the block in which the period starts
      - `lastLevel` integer — The height of the block in which the period ends
    - `proposal` ProposalAlias, required
      - `alias` string, nullable — Alias of the proposal
      - `hash` string, required — Hash of the proposal, which representing a tarball of concatenated .ml/.mli source files
    - `delegate` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `votingPower` integer — Baker's voting power
    - `vote` string, required — Vote, given in the ballot (`yay`, `nay`, or `pass`)
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `activations` ActivationOperation[], nullable — List of activation (is used to activate accounts that were recommended allocations of tezos tokens for donations to the Tezos Foundation’s fundraiser) operations, included in the block
    - `type` string — Type of the operation, `activation` - is used to activate accounts that were recommended allocations of tezos tokens for donations to the Tezos Foundation’s fundraiser.
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block, from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `account` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `balance` integer — Account activation balance of tezos tokens that were recommended allocations for donations to the Tezos Foundation’s fundraiser
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `dalEntrapmentEvidenceOps` DalEntrapmentEvidenceOperation[], nullable — List of dal entrapment evidence operations, included in the block
    - `type` string — Type of the operation, `dal_entrapment_evidence`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `accuser` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `offender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `trapLevel` integer — Height of the block from the genesis, where the trap was attested
    - `trapSlotIndex` integer — Trap slot index
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `doubleBaking` DoubleBakingOperation[], nullable — List of double baking evidence (is used by bakers to provide evidence of double baking (baking two different blocks at the same height) by a baker) operations, included in the block
    - `type` string — Type of the operation, `double_baking` - is used by bakers to provide evidence of double baking (baking two different blocks at the same height) by a baker
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — Height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `accusedLevel` integer — Height of the block from the genesis, which was double baked
    - `slashedLevel` integer — Height of the block from the genesis, at which the offender was slashed
    - `accuser` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `reward` integer — Reward of the baker, produced the block, in which the accusation was included
    - `offender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `lostStaked` integer — Amount slashed from baker's own staked balance
    - `lostUnstaked` integer — Amount slashed from baker's own unstaked balance
    - `lostExternalStaked` integer — Amount slashed from baker's external staked balance
    - `lostExternalUnstaked` integer — Amount slashed from baker's external unstaked balance
    - `stakingUpdatesCount` integer, nullable — Number of staking updates happened internally
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `doubleConsensus` DoubleConsensusOperation[], nullable — List of double consensus evidence (is used by bakers to provide evidence of double (pre)attestation ((pre)attestation of two different blocks at the same block height) by a baker) operations, included in the block
    - `type` string — Type of the operation, `double_consensus` - is used by bakers to provide evidence of double (pre)attestation ((pre)attestation of two different blocks at the same block height) by a baker
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — Height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `accusedLevel` integer — Height of the block from the genesis, at which double (pre)attestation occurred
    - `slashedLevel` integer — Height of the block from the genesis, at which the offender was slashed
    - `kind` string, required — Kind of misbehaviour (`double_attestation` or `double_preattestation`)
    - `accuser` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `reward` integer — Reward of the baker, produced the block, in which the accusation was included
    - `offender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `lostStaked` integer — Amount slashed from baker's own staked balance
    - `lostUnstaked` integer — Amount slashed from baker's own unstaked balance
    - `lostExternalStaked` integer — Amount slashed from baker's external staked balance
    - `lostExternalUnstaked` integer — Amount slashed from baker's external unstaked balance
    - `stakingUpdatesCount` integer, nullable — Number of staking updates happened internally
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `nonceRevelations` NonceRevelationOperation[], nullable — List of nonce revelation (used by the blockchain to create randomness) operations, included in the block
    - `type` string — Type of the operation, `nonce_revelation` - are used by the blockchain to create randomness
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `baker` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `revealedLevel` integer — Block height of the block, where seed nonce hash is stored
    - `revealedCycle` integer — Cycle for which seed nonce was revealed
    - `nonce` string, required — Seed nonce hex
    - `rewardDelegated` integer — Reward, corresponding to delegated stake, paid to baker's liquid balance (micro tez) (it is not frozen and can be spent immediately).
    - `rewardStakedOwn` integer — Reward, corresponding to baker's own stake, paid to baker's own staked balance (micro tez) (it is frozen and belongs to the baker).
    - `rewardStakedEdge` integer — Reward, corresponding to baker's edge from external stake, paid to baker's own staked balance (micro tez) (it is frozen and belongs to the baker).
    - `rewardStakedShared` integer — Reward, corresponding to baker's external stake, paid to baker's external staked balance (micro tez) (it is frozen and belongs to baker's stakers).
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `vdfRevelations` VdfRevelationOperation[], nullable — List of vdf revelation (used by the blockchain to create randomness) operations, included in the block
    - `type` string — Type of the operation, `vdf_revelation` - used by the blockchain to create randomness
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `baker` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `cycle` integer — Cycle in which the operation was included
    - `solution` string, required — Vdf solution
    - `proof` string, required — Vdf proof
    - `rewardDelegated` integer — Reward, corresponding to delegated stake, paid to baker's liquid balance (micro tez) (it is not frozen and can be spent immediately).
    - `rewardStakedOwn` integer — Reward, corresponding to baker's own stake, paid to baker's own staked balance (micro tez) (it is frozen and belongs to the baker).
    - `rewardStakedEdge` integer — Reward, corresponding to baker's edge from external stake, paid to baker's own staked balance (micro tez) (it is frozen and belongs to the baker).
    - `rewardStakedShared` integer — Reward, corresponding to baker's external stake, paid to baker's external staked balance (micro tez) (it is frozen and belongs to baker's stakers).
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `delegations` DelegationOperation[], nullable — List of delegation (is used to delegate funds to a delegate (an implicit account registered as a baker)) operations, included in the block
    - `type` string — Type of the operation, `delegation` - is used to delegate funds to a delegate (an implicit account registered as a baker)
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `initiator` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `senderCodeHash` integer, nullable — Hash of the sender contract code, or `null` is the sender is not a contract
    - `nonce` integer, nullable — An account nonce which is used to prevent internal operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `bakerFee` integer — Fee to a baker, produced block, in which the operation was included
    - `amount` integer — Sender's balance at the time of delegation operation (aka delegation amount).
    - `stakingUpdatesCount` integer, nullable — Number of staking updates happened internally
    - `prevDelegate` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `newDelegate` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `originations` OriginationOperation[], nullable — List of origination (deployment / contract creation ) operations, included in the block
    - `type` string — Type of the operation, `origination` - deployment / contract creation operation.
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `initiator` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `senderCodeHash` integer, nullable — Hash of the sender contract code, or `null` is the sender is not a contract
    - `nonce` integer, nullable — An account nonce which is used to prevent internal operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `storageUsed` integer — Amount of storage, consumed by the operation
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `storageFee` integer — The amount of funds burned from the sender account for contract storage in the blockchain (micro tez)
    - `allocationFee` integer — The amount of funds burned from the sender account for contract account creation (micro tez)
    - `contractBalance` integer — The contract origination balance (micro tez)
    - `contractDelegate` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `code` unknown
    - `storage` unknown
    - `diffs` BigMapDiff[], nullable — List of bigmap updates (aka big_map_diffs) caused by the origination.
      - `bigmap` integer — Bigmap Id
      - `path` string, required — Path to the bigmap in the contract storage
      - `action` string, required — Action with the bigmap (`allocate`, `add_key`, `update_key`, `remove_key`, `remove`)
      - `content` BigMapKeyShort
        - `hash` string, required — Key hash
        - `key` unknown, required
        - `value` unknown, required
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was a successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `originatedContract` OriginatedContract
      - `kind` string, required — Kind of the contract (`delegator_contract` or `smart_contract`), where `delegator_contract` - manager.tz smart contract for delegation purpose only
      - `alias` string, nullable — Name of the project behind the contract or contract description
      - `address` string, required — Public key hash of the contract
      - `typeHash` integer — 32-bit hash of the contract parameter and storage types. This field can be used for searching similar contracts (which have the same interface).
      - `codeHash` integer — 32-bit hash of the contract code. This field can be used for searching same contracts (which have the same script).
      - `tzips` string[], nullable — List of implemented standards (TZIPs)
    - `tokenTransfersCount` integer, nullable — Number of token transfers produced by the operation, or `null` if there are no transfers
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `transactions` TransactionOperation[], nullable — List of transaction (is a standard operation used to transfer tezos tokens to an account) operations, included in the block
    - `type` string — Type of the operation, `transaction` - is a standard operation used to transfer tezos tokens to an account
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `initiator` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `senderCodeHash` integer, nullable — Hash of the sender contract code, or `null` is the sender is not a contract
    - `nonce` integer, nullable — An account nonce which is used to prevent internal operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `storageUsed` integer — Amount of storage, consumed by the operation
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `storageFee` integer — The amount of funds burned from the sender account for used the blockchain storage (micro tez)
    - `allocationFee` integer — The amount of funds burned from the sender account for account creation (micro tez)
    - `target` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `targetCodeHash` integer, nullable — Hash of the target contract code, or `null` is the target is not a contract
    - `amount` integer — The transaction amount (micro tez)
    - `parameter` TxParameter
      - `entrypoint` string, required — Entrypoint called on the target contract
      - `value` unknown
    - `storage` unknown
    - `diffs` BigMapDiff[], nullable — List of bigmap updates (aka big_map_diffs) caused by the transaction.
      - `bigmap` integer — Bigmap Id
      - `path` string, required — Path to the bigmap in the contract storage
      - `action` string, required — Action with the bigmap (`allocate`, `add_key`, `update_key`, `remove_key`, `remove`)
      - `content` BigMapKeyShort
        - `hash` string, required — Key hash
        - `key` unknown, required
        - `value` unknown, required
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `hasInternals` boolean — An indication of whether the transaction has an internal operations `true` - there are internal operations `false` - no internal operations
    - `tokenTransfersCount` integer, nullable — Number of token transfers produced by the operation, or `null` if there are no transfers
    - `ticketTransfersCount` integer, nullable — Number of ticket transfers produced by the operation, or `null` if there are no transfers
    - `eventsCount` integer, nullable — Number of events produced by the operation, or `null` if there are no events
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `reveals` RevealOperation[], nullable — List of reveal (is used to reveal the public key associated with an account) operations, included in the block
    - `type` string — Type of the operation, `reveal` - is used to reveal the public key associated with an account
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `publicKey` string, nullable — Revealed public key
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `registerConstants` RegisterConstantOperation[], nullable — List of register global constant operations, included in the block
    - `type` string — Type of the operation, `register_constant` - is used to register a global constant - Micheline expression that can be reused by multiple smart contracts
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `storageUsed` integer — Amount of storage, consumed by the operation
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `storageFee` integer — The amount of funds burned from the sender account for used the blockchain storage (micro tez)
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `address` string, nullable — Global address of the registered constant (null if the operation failed)
    - `value` unknown
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `setDepositsLimits` SetDepositsLimitOperation[], nullable — List of set deposits limit operations, included in the block
    - `type` string — Type of the operation, `set_deposits_limit`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `limit` string, nullable — Frozen deposits limit (mutez), or `null` if no limit.
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `transferTicketOps` TransferTicketOperation[], nullable — List of transfer ticket operations, included in the block
    - `type` string — Type of the operation, `transfer_ticket`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `storageUsed` integer — Amount of storage, consumed by the operation
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `storageFee` integer — The amount of funds burned from the sender account for used the blockchain storage (micro tez)
    - `target` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `ticketer` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `amount` string — Amount sent
    - `entrypoint` string, required — Entrypoint
    - `ticketTransfersCount` integer, nullable — Number of ticket transfers produced by the operation, or `null` if there are no transfers
    - `contentType` unknown
    - `content` unknown
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `txRollupCommitOps` TxRollupCommitOperation[], nullable — List of tx rollup commit operations, included in the block
    - `type` string — Type of the operation, `tx_rollup_commit`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `rollup` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `bond` integer — Amount of bonds (micro tez) locked
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `txRollupDispatchTicketsOps` TxRollupDispatchTicketsOperation[], nullable — List of tx rollup dispatch tickets operations, included in the block
    - `type` string — Type of the operation, `tx_rollup_dispatch_tickets`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `storageUsed` integer — Amount of storage, consumed by the operation
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `storageFee` integer — The amount of funds burned from the sender account for used the blockchain storage (micro tez)
    - `rollup` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `txRollupFinalizeCommitmentOps` TxRollupFinalizeCommitmentOperation[], nullable — List of tx rollup finalize commitment operations, included in the block
    - `type` string — Type of the operation, `tx_rollup_finalize_commitment`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `rollup` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `txRollupOriginationOps` TxRollupOriginationOperation[], nullable — List of tx rollup origination operations, included in the block
    - `type` string — Type of the operation, `tx_rollup_origination`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `allocationFee` integer — The amount of funds burned from the sender account for account creation (micro tez)
    - `rollup` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `txRollupRejectionOps` TxRollupRejectionOperation[], nullable — List of tx rollup rejection operations, included in the block
    - `type` string — Type of the operation, `tx_rollup_rejection`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `rollup` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `committer` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `reward` integer — Reward (micro tez) sent to the rejection sender
    - `loss` integer — Loss (micro tez) burned from the committer
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `txRollupRemoveCommitmentOps` TxRollupRemoveCommitmentOperation[], nullable — List of tx rollup remove commitment operations, included in the block
    - `type` string — Type of the operation, `tx_rollup_remove_commitment`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `rollup` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `txRollupReturnBondOps` TxRollupReturnBondOperation[], nullable — List of tx rollup return bond operations, included in the block
    - `type` string — Type of the operation, `tx_rollup_return_bond`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `rollup` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `bond` integer — Amount of bonds unlocked (micro tez)
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `txRollupSubmitBatchOps` TxRollupSubmitBatchOperation[], nullable — List of tx rollup submit batch operations, included in the block
    - `type` string — Type of the operation, `tx_rollup_submit_batch`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `storageUsed` integer — Amount of storage, consumed by the operation
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `storageFee` integer — The amount of funds burned from the sender account for used the blockchain storage (micro tez)
    - `rollup` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `increasePaidStorageOps` IncreasePaidStorageOperation[], nullable — List of increase paid storage operations, included in the block
    - `type` string — Type of the operation, `increase_paid_storage`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `storageUsed` integer — Amount of storage, consumed by the operation
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `storageFee` integer — The amount of funds burned from the sender account for used the blockchain storage (micro tez)
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `contract` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `amount` string — Amount of storage in bytes prepaid.
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `updateSecondaryKeyOps` UpdateSecondaryKeyOperation[], nullable — List of update secondary key operations, included in the block
    - `type` string — Type of the operation, `update_secondary_key`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `keyType` string, required — Type of the key: `consensus` or `companion`
    - `activationCycle` integer — Index of the cycle from which the secondary key will be active
    - `publicKey` string, required — Secondary key
    - `publicKeyHash` string, required — Secondary key hash
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `drainDelegateOps` DrainDelegateOperation[], nullable — List of drain delegate operations, included in the block
    - `type` string — Type of the operation, `drain_delegate`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `delegate` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `target` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `amount` integer — Amount sent from the drained baker to the target
    - `fee` integer — Amount sent from the drained baker to the block baker
    - `allocationFee` integer — The amount of funds burned from the drained baker for account creation (micro tez)
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `srAddMessagesOps` SmartRollupAddMessagesOperation[], nullable — List of smart rollup add messages operations, included in the block
    - `type` string — Type of the operation, `sr_add_messages`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database **[sortable]**
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `messagesCount` integer — Number of messages added to the smart rollup inbox
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `srCementOps` SmartRollupCementOperation[], nullable — List of smart rollup cement operations, included in the block
    - `type` string — Type of the operation, `sr_cement`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database **[sortable]**
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `rollup` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `commitment` SrCommitmentInfo
      - `id` integer — Internal TzKT id.
      - `initiator` Alias, required
        - `alias` string, nullable — Account alias name (off-chain data).
        - `address` string, required — Account address (public key hash).
      - `inboxLevel` integer — Inbox level
      - `state` string, required — State hash
      - `hash` string, required — Commitment hash
      - `ticks` integer — Number of ticks
      - `firstLevel` integer — Level of the block where the commitment was first published.
      - `firstTime` string, date-time — Timestamp of the block where the commitment was first published.
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `srExecuteOps` SmartRollupExecuteOperation[], nullable — List of smart rollup execute operations, included in the block
    - `type` string — Type of the operation, `sr_execute`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database **[sortable]**
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `storageUsed` integer — Amount of storage, consumed by the operation
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `storageFee` integer — The amount of funds burned from the sender account for used the blockchain storage (micro tez)
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `rollup` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `commitment` SrCommitmentInfo
      - `id` integer — Internal TzKT id.
      - `initiator` Alias, required
        - `alias` string, nullable — Account alias name (off-chain data).
        - `address` string, required — Account address (public key hash).
      - `inboxLevel` integer — Inbox level
      - `state` string, required — State hash
      - `hash` string, required — Commitment hash
      - `ticks` integer — Number of ticks
      - `firstLevel` integer — Level of the block where the commitment was first published.
      - `firstTime` string, date-time — Timestamp of the block where the commitment was first published.
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `ticketTransfersCount` integer, nullable — Number of ticket transfers produced by the operation, or `null` if there are no transfers
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `srOriginateOps` SmartRollupOriginateOperation[], nullable — List of smart rollup originate operations, included in the block
    - `type` string — Type of the operation, `sr_originate`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database **[sortable]**
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `storageUsed` integer — Amount of storage, consumed by the operation
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `storageFee` integer — The amount of funds burned from the sender account for used the blockchain storage (micro tez)
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `pvmKind` string, required — PVM kind (`arith` or `wasm`).
    - `kernel` string, byte, required — Kernel bytes (in base64).
    - `parameterType` unknown
    - `genesisCommitment` string, nullable — Genesis commitment hash.
    - `rollup` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `srPublishOps` SmartRollupPublishOperation[], nullable — List of smart rollup publish operations, included in the block
    - `type` string — Type of the operation, `sr_publish`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database **[sortable]**
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `rollup` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `commitment` SrCommitmentInfo
      - `id` integer — Internal TzKT id.
      - `initiator` Alias, required
        - `alias` string, nullable — Account alias name (off-chain data).
        - `address` string, required — Account address (public key hash).
      - `inboxLevel` integer — Inbox level
      - `state` string, required — State hash
      - `hash` string, required — Commitment hash
      - `ticks` integer — Number of ticks
      - `firstLevel` integer — Level of the block where the commitment was first published.
      - `firstTime` string, date-time — Timestamp of the block where the commitment was first published.
    - `bond` integer — Amount of bonds locked (micro tez)
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `srRecoverBondOps` SmartRollupRecoverBondOperation[], nullable — List of smart rollup recover bond operations, included in the block
    - `type` string — Type of the operation, `sr_recover_bond`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database **[sortable]**
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `rollup` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `staker` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `bond` integer — Amount of bonds returned (micro tez)
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `srRefuteOps` SmartRollupRefuteOperation[], nullable — List of smart rollup refute operations, included in the block
    - `type` string — Type of the operation, `sr_refute`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database **[sortable]**
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `rollup` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `game` SrGameInfo
      - `id` integer — Internal TzKT id.
      - `initiator` Alias, required
        - `alias` string, nullable — Account alias name (off-chain data).
        - `address` string, required — Account address (public key hash).
      - `initiatorCommitment` SrCommitmentInfo, required
        - `id` integer — Internal TzKT id.
        - `initiator` Alias, required
          - `alias` string, nullable — Account alias name (off-chain data).
          - `address` string, required — Account address (public key hash).
        - `inboxLevel` integer — Inbox level
        - `state` string, required — State hash
        - `hash` string, required — Commitment hash
        - `ticks` integer — Number of ticks
        - `firstLevel` integer — Level of the block where the commitment was first published.
        - `firstTime` string, date-time — Timestamp of the block where the commitment was first published.
      - `opponent` Alias, required
        - `alias` string, nullable — Account alias name (off-chain data).
        - `address` string, required — Account address (public key hash).
      - `opponentCommitment` SrCommitmentInfo, required
        - `id` integer — Internal TzKT id.
        - `initiator` Alias, required
          - `alias` string, nullable — Account alias name (off-chain data).
          - `address` string, required — Account address (public key hash).
        - `inboxLevel` integer — Inbox level
        - `state` string, required — State hash
        - `hash` string, required — Commitment hash
        - `ticks` integer — Number of ticks
        - `firstLevel` integer — Level of the block where the commitment was first published.
        - `firstTime` string, date-time — Timestamp of the block where the commitment was first published.
      - `initiatorReward` integer, nullable — In case the initiator won, this field will contain the reward amount (in mutez).
      - `initiatorLoss` integer, nullable — In case the initiator lost (including a `draw`), this field will contain the loss amount (in mutez).
      - `opponentReward` integer, nullable — In case the opponent won, this field will contain the reward amount (in mutez).
      - `opponentLoss` integer, nullable — In case the opponent lost (including a `draw`), this field will contain the loss amount (in mutez).
    - `move` string, required — Player's move (`start`, `dissection`, `proof`, `timeout`)
    - `gameStatus` string, required — Game status, after player's move (`ongoing`, `loser`, `draw`)
    - `dissectionStart` integer, nullable — The first tick in the dissection range. This field is `null` if `move` is not `dissection.
    - `dissectionEnd` integer, nullable — The last tick in the dissection range. This field is `null` if `move` is not `dissection.
    - `dissectionSteps` integer, nullable — Total ticks in the dissection range. This field is `null` if `move` is not `dissection`.
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `stakingOps` StakingOperation[], nullable — List of staking operations, included in the block
    - `type` string — Type of the operation, `staking`
    - `id` integer — Internal TzKT ID. **[sortable]**
    - `level` integer — Height of the block from the genesis
    - `timestamp` string, date-time — Datetime at which the block is claimed to have been created (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `staker` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `action` string, required — Staking action (`stake`, `unstake`, `finalize`)
    - `requestedAmount` integer — Amount passed as the staking operation parameter (micro tez)
    - `amount` integer, nullable — Actually processed amount (micro tez)
    - `baker` Alias
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `stakingUpdatesCount` integer, nullable — Number of staking updates happened internally
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `setDelegateParametersOps` SetDelegateParametersOperation[], nullable — List of set delegate parameters operations, included in the block
    - `type` string — Type of the operation, `set_delegate_parameters`
    - `id` integer — Internal TzKT ID. **[sortable]**
    - `level` integer — Height of the block from the genesis
    - `timestamp` string, date-time — Datetime at which the block is claimed to have been created (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `limitOfStakingOverBaking` integer, nullable — This parameter determines the maximum portion (millionth) of external stake by stakers over the baker's own staked funds
    - `edgeOfBakingOverStaking` integer, nullable — This parameter determines the fraction (billionth) of the rewards that accrue to the delegate’s frozen deposit – the remainder is shared among its stakers
    - `activationCycle` integer, nullable — Cycle from which the specified staking parameters are activated
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `dalPublishCommitmentOps` DalPublishCommitmentOperation[], nullable — List of DAL publish commitment operations, included in the block
    - `type` string — Type of the operation, `dal_publish_commitment`
    - `id` integer — Internal TzKT ID. **[sortable]**
    - `level` integer — Height of the block from the genesis
    - `timestamp` string, date-time — Datetime at which the block is claimed to have been created (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `slot` integer — Slot number
    - `commitment` string, required — Commitment hash
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `migrations` MigrationOperation[], nullable — List of migration operations, implicitly applied at the end of the block
    - `type` string — Type of the operation, `migration` - result of the context (database) migration during a protocol update (synthetic type)
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `kind` string, required — Kind of the migration `bootstrap` - balance updates, included in the first block after genesis `activate_delegate` - registering a new baker (delegator) during protocol migration `airdrop` - airdrop of 1 micro tez during Babylon protocol upgrade `proposal_invoice` - invoice for creation a proposal for protocol upgrade `code_change` - changing contract scripts during Babylon protocol upgrade `origination` - implicit (hardcoded in the protocol) origination of liquidity baking contracts `subsidy` - liquidity baking subsidy `remove_bigmap_key` - removing the key from the bigmap
    - `account` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `balanceChange` integer — The amount for which the operation updated the balance (micro tez)
    - `storage` unknown
    - `diffs` BigMapDiff[], nullable — List of bigmap updates caused by the migration.
      - `bigmap` integer — Bigmap Id
      - `path` string, required — Path to the bigmap in the contract storage
      - `action` string, required — Action with the bigmap (`allocate`, `add_key`, `update_key`, `remove_key`, `remove`)
      - `content` BigMapKeyShort
        - `hash` string, required — Key hash
        - `key` unknown, required
        - `value` unknown, required
    - `tokenTransfersCount` integer, nullable — Number of token transfers produced by the operation, or `null` if there are no transfers
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `revelationPenalties` RevelationPenaltyOperation[], nullable — List of revelation penalty operations, implicitly applied at the end of the block
    - `type` string — Type of the operation, `revelation_penalty` - is operation, in which rewards were lost due to unrevealed seed nonces by the delegate (synthetic type)
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `baker` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `missedLevel` integer — Height of the block, which contains hash of the seed nonce, which was to be revealed
    - `loss` integer — Reward for baking and gathered fees from the block, which were lost due to unrevealed seed nonces (micro tez)
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `attestationRewards` AttestationRewardOperation[], nullable — List of attestation rewards, implicitly applied at the end of the block
    - `type` string — Type of the operation, `attestation_reward`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — Height of the block from the genesis
    - `timestamp` string, date-time — Datetime at which the block is claimed to have been created (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Block hash
    - `baker` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `expected` integer — Expected attestation reward, based on baker's active stake (micro tez)
    - `rewardDelegated` integer — Reward, corresponding to delegated stake, paid to baker's liquid balance (micro tez) (it is not frozen and can be spent immediately).
    - `rewardStakedOwn` integer — Reward, corresponding to baker's own stake, paid to baker's own staked balance (micro tez) (it is frozen and belongs to the baker).
    - `rewardStakedEdge` integer — Reward, corresponding to baker's edge from external stake, paid to baker's own staked balance (micro tez) (it is frozen and belongs to the baker).
    - `rewardStakedShared` integer — Reward, corresponding to baker's external stake, paid to baker's external staked balance (micro tez) (it is frozen and belongs to baker's stakers).
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `dalAttestationRewards` DalAttestationRewardOperation[], nullable — List of dal attestation rewards, implicitly applied at the end of the block
    - `type` string — Type of the operation, `dal_attestation_reward`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — Height of the block from the genesis
    - `timestamp` string, date-time — Datetime at which the block is claimed to have been created (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Block hash
    - `baker` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `expected` integer — Expected dal attestation reward, based on baker's active stake (micro tez)
    - `rewardDelegated` integer — Reward, corresponding to delegated stake, paid to baker's liquid balance (micro tez) (it is not frozen and can be spent immediately).
    - `rewardStakedOwn` integer — Reward, corresponding to baker's own stake, paid to baker's own staked balance (micro tez) (it is frozen and belongs to the baker).
    - `rewardStakedEdge` integer — Reward, corresponding to baker's edge from external stake, paid to baker's own staked balance (micro tez) (it is frozen and belongs to the baker).
    - `rewardStakedShared` integer — Reward, corresponding to baker's external stake, paid to baker's external staked balance (micro tez) (it is frozen and belongs to baker's stakers).
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `autostakingOps` AutostakingOperation[], nullable — List of autostaking operations, implicitly applied at the end of the block
    - `type` string — Type of the operation, `autostaking`
    - `id` integer — Internal TzKT ID. **[sortable]**
    - `level` integer — Height of the block from the genesis
    - `timestamp` string, date-time — Datetime at which the block is claimed to have been created (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `baker` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `action` string, required — Autostaking action (`stake`, `unstake`, `finalize`)
    - `amount` integer — Amount (micro tez)
    - `stakingUpdatesCount` integer — Number of staking updates happened internally
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `quote` QuoteShort
    - `btc` number, double, nullable — XTZ/BTC price
    - `eur` number, double, nullable — XTZ/EUR price
    - `usd` number, double, nullable — XTZ/USD price
    - `cny` number, double, nullable — XTZ/CNY price
    - `jpy` number, double, nullable — XTZ/JPY price
    - `krw` number, double, nullable — XTZ/KRW price
    - `eth` number, double, nullable — XTZ/ETH price
    - `gbp` number, double, nullable — XTZ/GBP price
  - `validations` integer — **DEPRECATED**
  - `aiToggle` boolean, nullable — **DEPRECATED**
  - `aiToggleEma` integer — **DEPRECATED**
  - `updateConsensusKeyOps` UpdateSecondaryKeyOperation[], nullable — **DEPRECATED**
    - `type` string — Type of the operation, `update_secondary_key`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `sender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `counter` integer — An account nonce which is used to prevent operation replay
    - `gasLimit` integer — A cap on the amount of gas a given operation can consume
    - `gasUsed` integer — Amount of gas, consumed by the operation
    - `storageLimit` integer — A cap on the amount of storage a given operation can consume
    - `bakerFee` integer — Fee to the baker, produced block, in which the operation was included (micro tez)
    - `status` string, required — Operation status (`applied` - an operation applied by the node and successfully added to the blockchain, `failed` - an operation which failed with some particular error (not enough balance, gas limit, etc), `backtracked` - an operation which was successful but reverted due to one of the following operations in the same operation group was failed, `skipped` - all operations after the failed one in an operation group)
    - `keyType` string, required — Type of the key: `consensus` or `companion`
    - `activationCycle` integer — Index of the cycle from which the secondary key will be active
    - `publicKey` string, required — Secondary key
    - `publicKeyHash` string, required — Secondary key hash
    - `errors` OperationError[], nullable — List of errors provided by the node, injected the operation to the blockchain. `null` if there is no errors
      - `type` string, required — Type of an error (`error.id`, `contract.balance_too_low`, `contract.non_existing_contract`, `contract.manager.unregistered_delegate`, etc.) https://tezos.gitlab.io/api/errors.html - full list of errors
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `endorsements` AttestationOperation[], nullable — **DEPRECATED**
    - `type` string — Type of the operation, `attestation` - is operation, which specifies the head of the chain as seen by the attester of a given slot. The attester is randomly selected to be included in the block that extends the head of the chain as specified in this operation. A block with more attestations improves the weight of the chain and increases the likelihood of that chain being the canonical one.
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `delegate` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `power` integer — Attestation power
    - `deposit` integer — Security deposit frozen on the baker's account
    - `rewards` integer — Reward of the baker for the operation
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
    - `slots` integer — **DEPRECATED**
  - `preendorsements` PreattestationOperation[], nullable — **DEPRECATED**
    - `type` string — Type of the operation, `preattestation`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — The height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `delegate` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `power` integer — Attestation power
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
    - `slots` integer — **DEPRECATED**
  - `doubleEndorsing` DoubleConsensusOperation[], nullable — **DEPRECATED**
    - `type` string — Type of the operation, `double_consensus` - is used by bakers to provide evidence of double (pre)attestation ((pre)attestation of two different blocks at the same block height) by a baker
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — Height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `accusedLevel` integer — Height of the block from the genesis, at which double (pre)attestation occurred
    - `slashedLevel` integer — Height of the block from the genesis, at which the offender was slashed
    - `kind` string, required — Kind of misbehaviour (`double_attestation` or `double_preattestation`)
    - `accuser` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `reward` integer — Reward of the baker, produced the block, in which the accusation was included
    - `offender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `lostStaked` integer — Amount slashed from baker's own staked balance
    - `lostUnstaked` integer — Amount slashed from baker's own unstaked balance
    - `lostExternalStaked` integer — Amount slashed from baker's external staked balance
    - `lostExternalUnstaked` integer — Amount slashed from baker's external unstaked balance
    - `stakingUpdatesCount` integer, nullable — Number of staking updates happened internally
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `doublePreendorsing` DoubleConsensusOperation[], nullable — **DEPRECATED**
    - `type` string — Type of the operation, `double_consensus` - is used by bakers to provide evidence of double (pre)attestation ((pre)attestation of two different blocks at the same block height) by a baker
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — Height of the block from the genesis block, in which the operation was included
    - `timestamp` string, date-time — Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Hash of the block, in which the operation was included
    - `hash` string, required — Hash of the operation
    - `accusedLevel` integer — Height of the block from the genesis, at which double (pre)attestation occurred
    - `slashedLevel` integer — Height of the block from the genesis, at which the offender was slashed
    - `kind` string, required — Kind of misbehaviour (`double_attestation` or `double_preattestation`)
    - `accuser` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `reward` integer — Reward of the baker, produced the block, in which the accusation was included
    - `offender` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `lostStaked` integer — Amount slashed from baker's own staked balance
    - `lostUnstaked` integer — Amount slashed from baker's own unstaked balance
    - `lostExternalStaked` integer — Amount slashed from baker's external staked balance
    - `lostExternalUnstaked` integer — Amount slashed from baker's external unstaked balance
    - `stakingUpdatesCount` integer, nullable — Number of staking updates happened internally
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price
  - `endorsingRewards` AttestationRewardOperation[], nullable — **DEPRECATED**
    - `type` string — Type of the operation, `attestation_reward`
    - `id` integer — Unique ID of the operation, stored in the TzKT indexer database
    - `level` integer — Height of the block from the genesis
    - `timestamp` string, date-time — Datetime at which the block is claimed to have been created (ISO 8601, e.g. `2020-02-20T02:40:57Z`)
    - `block` string, required — Block hash
    - `baker` Alias, required
      - `alias` string, nullable — Account alias name (off-chain data).
      - `address` string, required — Account address (public key hash).
    - `expected` integer — Expected attestation reward, based on baker's active stake (micro tez)
    - `rewardDelegated` integer — Reward, corresponding to delegated stake, paid to baker's liquid balance (micro tez) (it is not frozen and can be spent immediately).
    - `rewardStakedOwn` integer — Reward, corresponding to baker's own stake, paid to baker's own staked balance (micro tez) (it is frozen and belongs to the baker).
    - `rewardStakedEdge` integer — Reward, corresponding to baker's edge from external stake, paid to baker's own staked balance (micro tez) (it is frozen and belongs to the baker).
    - `rewardStakedShared` integer — Reward, corresponding to baker's external stake, paid to baker's external staked balance (micro tez) (it is frozen and belongs to baker's stakers).
    - `quote` QuoteShort
      - `btc` number, double, nullable — XTZ/BTC price
      - `eur` number, double, nullable — XTZ/EUR price
      - `usd` number, double, nullable — XTZ/USD price
      - `cny` number, double, nullable — XTZ/CNY price
      - `jpy` number, double, nullable — XTZ/JPY price
      - `krw` number, double, nullable — XTZ/KRW price
      - `eth` number, double, nullable — XTZ/ETH price
      - `gbp` number, double, nullable — XTZ/GBP price

---

[API](https://skmtc.dev/tzkt/apis/tzkt-api.md) · [All operations](https://skmtc.dev/tzkt/apis/tzkt-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/tzkt/tzkt-api/revisions/a2e2aba5e534/schema)
